您好我想在表格数据IE的一个区域中显示2种不同的文字颜色:
<tr>
<td bgcolor="#FFFF00">This text is Yellow! and This test is blue </td>
</tr>
我可以在一个TD标签内指定两种颜色吗?我认为这将是一项轻松的任务,但我真的很挣扎,任何帮助都非常感谢!
谢谢
答案 0 :(得分:6)
将它们包装在容器元素中,并将样式应用于包装元素。
<td bgcolor="#FFFF00">
<span style="color:yellow">
This text is Yellow!
<span style="color:blue">
and This test is blue
</span>
</td>
答案 1 :(得分:1)
将span
标记与适当的bgcolor或样式属性一起使用:
<tr>
<td><span style="background: yellow">yellow</span> <span style="background: blue">blue</span></td>
</tr>
答案 2 :(得分:1)
你应该使用span
-tags并学习CSS:)
<tr>
<td style="background: #ffff00;">
<span style="color: yellow;">This text is Yellow!</span> and <span style="color: blue;">This test is blue</span>
</td>
</tr>