【发布时间】:2015-09-11 06:36:33
【问题描述】:
我已将background-color: #C0C0C0; 应用于我的跨度元素.grey_bg,但背景没有改变颜色。这是为什么呢?
.grey_bg {
width: 100%;
background-color: #C0C0C0;
}
<span class="grey_bg">
<h1>Hey</h1>
</span>
【问题讨论】:
-
阅读MDN 上的
<span>规范 - 允许的内容:短语内容,不能包含标题,即<h1>,因为它不是phrasing content。
标签: html css background-color