我不需要为整个div提供背景颜色。我只需要有文字内容的背景颜色。请帮帮我。
答案 0 :(得分:0)
希望这会有所帮助,或者为了更好的解决方案,你可以提供你的小提琴
div {
height:2em;
width:20em;
background-color:#333;
text-align:center;}
div span.textContent {
background-color:#000;
color:#FFF; }
答案 1 :(得分:0)
我帮助你用Google搜索" CSS文字突出显示"。
<p class="intro">
Highlighting text on a web page can help bring important information immediately to
the readers attention e.g., "<span style="background-color: #FFFF00">This text
should is highlighted in yellow and probably caught your eye first.</span>"
</p>
答案 2 :(得分:0)
使用span标签并应用背景颜色:#FFFF00;
<span style="background-color: #FFFF00;">In publishing and graphic design, lorem ipsum is a placeholder text commonly used to demonstrate the graphic elements of a document or visual presentation.</span>
这看起来像,
答案 3 :(得分:-1)