HTML CSS里display:block的原理和用法

669 阅读1分钟

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:

在这里插入图片描述