我正在使用html在jlist中显示文本。 span标记的背景颜色没有变化。有什么方法可以尝试改变背景颜色吗?我还想知道是否有任何工具/在线网站,我们可以为Swing应用程序验证html。
<span 'background-color=green'> <b>Name : </b> </span>
由于
答案 0 :(得分:4)
background-color
是一种CSS样式,您可以将其添加到具有style
属性的HTML元素中:
<span style="background-color:green"> <b>Name : </b> </span>
您可以使用W3C标记验证服务验证HTML:http://validator.w3.org/