内联元素的高度、宽度及底部边距不是不可设置吗?下面有一段代码中可以设置?
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>内联块状元素</title>
<style type="text/css">
div,p{background:pink;}
#a{
display:inline;
width: 50px;
height: 40px;
}
#b{
display:inline-block;
width: 50px;
height: 40px;
}
#c{
display:block;
width: 300px;
height: 400px;
}
</style>
</head>
<body>
<div id="a">div1</div>
<div id="b">div2</div>
<p id="c">段落1段落1段落1段落1段落1</p>
</body>
</html>