在p标签里不能嵌套所有快属性的标签
否则会被p标签排挤出去成为一个新的脱离P标签的 快属性
内联块不能嵌套块
<!-- <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>asdasd</title>
<style type="text/css">
ul li{
background: #ccc;
line-height: 60px;
height: 60px;
margin-top:10px;
}
p{
height: 100px;
}
</style>
</head>
<body>
<p>
asdasdadasda
<UL>
<li>按时大大大啊实打实大师的</li>
</UL>
<h6>dddddddddd</h6>
</p>
</body>
</html> -->