这里p的margin怎么清除不掉
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>前端课程排列</title>
<style type="text/css">
body{margin: 0;
padding: 0}
.container{
width: 300px;
height: auto;
background: #efefef;
margin: 0 auto;
/*padding:0 30px;*/
}
.title{
background: #112233;
color:#cceeff;
/*padding-bottom: 80px;*/
padding-top: 80px;
text-align: center;
font:700 25px "Microsoft Yahei";
height: 105px;
}
.li{
height: 50px;
margin: 0 30px;
border-bottom: 1px dotted #768977;
p{
margin: 0 0;
}
}
.li:last-child{border-bottom: none;}
</style>
</head>
<body>
<div class="container">
<div class="title">
前端课程排列
</div>
<div class="li">
<p>HTML CSS基础课程</p>
<span>8392479人在学</span>
</div>
<div class="li">
<p>HTML CSS基础课程</p>
<span>8392479人在学</span>
</div>
<div class="li">
<p>HTML CSS基础课程</p>
<span>8392479人在学</span>
</div>
</div>
</body>
</html>
正在回答
同学你好,开头的代码只是给body标签清除的间距啊body{margin: 0;padding: 0}。并不是给所有标签清除,如果想要开头设置生效的话,可以将body改为*(通配符),所有标签都会生效。
祝学习愉快!
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星