jsp中使用out.println(string)时如何配置字体大小和颜色
jsp中使用out.println(string)时如何配置字体大小和颜色?我想打印出字符串,它是包含一些句子的数据结构。
How to configure font size and color when we use out.println(string) in jsp? I want print out string which is a data structure that contain some sentences.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您正在生成 HTML 代码,则字体大小和颜色是 CSS 属性。您可以使用给定的 CSS 类名创建一个
span
标记,然后在 CSS 定义文件中为其指定您喜欢的样式:并在 CSS 文件中:
Assuming you are generating HTML code, the font size and color are CSS attributes. You may create a
span
tag with a given CSS class name, then in your CSS definition file give it the style you like:and in a CSS file: