请考虑以下代码。我的目的是在30px
和hello
之间有一个world
宽的绿色条。
.bar {
display: inline-block;
background-color: green;
width: 30px;
}
<div>
hello <div class="bar"></div> world
</div>
该块确实存在,但没有填充。缺少什么?
答案 0 :(得分:4)
div
中没有内容,因此高度为0px
。您可以设置height
或在
中使用div
使其显示。