第一个红色没有显示,为什么呢?
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
div{
width: 200px;
height:150px;
background-color: #eee;
margin-top: 5px;
}
section{
width: 200px;
height: 30px;
margin-bottom: 5px;
background-color: #ff0;
}
/*此处写代码*/
div:empty{background-color:#00;}
section:empty{background-color:#abcdef;}
</style>
</head>
<body>
<div>
<section>one</section>
<section>two</section>
</div>
<div></div>
<div>
<section>three</section>
<section>four</section>
<section>five</section>
<section></section>
</div>
</body>
</html>
15
收起
正在回答
2回答
同学你好,是指如下红色没有显示吗?
这是因为设置样式这里,少了一个f,应该是#f00,例:
如果我的回答帮助了你,欢迎采纳,祝学习愉快~
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星