仅在文本上显示颜色,而不在td中显示空白区域

我试图让背景颜色环绕文本而不是空白空间。

我现在有:

<TD> Text <BR><BR>
Longer text that stretches out above text-background color...
</TD>

和CSS:

td {background-color: black; color: white}

剩余空间我想要透明,但我找不到任何变量...


尝试跨越如下所示将做你的工作.....

<TD> <span> Text <BR><BR> Longer text that stretches out above text-background color... 
 </span></TD> 

span {background-color: black; color: white} 

尝试display:inline;

td {background-color: black; color: white; display:inline;}

在文本周围放置一个<span> ,并给出背景颜色。

链接地址: http://www.djcxy.com/p/15693.html

上一篇: color on only the text not the empty space in a td

下一篇: <br /> not working in Firefox