Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只想将 bgcolor 赋予 th 属性,宽度为 70%。 标题就像“大型活动优惠”。我只想给它背景颜色。但它的宽度很大。所以它也超出了标题..我们能做到吗?我用谷歌搜索了..但没用..有 什么想法吗?
不确定我是否完全理解这里的问题,但是鉴于您只想在文本后面而不是在整个 th 元素上应用背景,我想您可以将文本包装在span-element 中并将背景颜色应用于该元素而不是整个-th元素。
span
th
像这样的东西:
标记
.. <th> <span class="mega-event">Mega Event Offer</span> </th> ..
CSS
.mega-event { background-color: #888; }