display的不同
display:block 和 display:inline-block 有什么不同??
display:block 和 display:inline-block 有什么不同??
2016-04-21
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>流动模式下的内联元素</title>
<style type="text/css">
span{
display:block;
width:100px;
height:200px;
}
</style>
</head>
<body>
<a href="http://www.imooc.com">www.imooc.com</a><span>强调</span><em>重点</em>
<strong>强调</strong>
</body>
</html>
我用block写出来宽度和高度都变,用inline-block只变宽度,不变高度,为什么??
举报