display:block;比较常用于这两个标签,因为这两个标签非块元素.如果不用display:block定义,那么定义width、height等和长宽相关的css属性时不会生效。
</html>
<style type="text/css">
.highlight
{
background-color:yellow;
text-decoration:underline;
width: 100px;
height: 100px;
}
</style>
<p>Jerry's <span class = "highlight">Hello</span></p>
</html>
加上display: block后:
对于div tag来说,默认display即为block: