Skip to content

CSS 中的文档流是什么?

Posted on:2024年8月14日 at 22:49

CSS 中的文档流(Document Flow),也称为标准流,是指浏览器如何按照 HTML 元素的结构和 CSS 样式规则来布局和呈现网页内容的过程。文档流决定了元素在页面上的位置和排列方式。文档流的主要特点和组成部分包括:

1. 主要布局模式

2. 文档流中的元素类型

3. 影响文档流的 CSS 属性

4. 文档流的影响

5. 示例

<!doctype html>
<html>
  <head>
    <style>
      .container {
        border: 1px solid black;
        padding: 10px;
      }
      .block {
        display: block;
        background-color: lightblue;
        margin-bottom: 10px;
      }
      .inline {
        display: inline;
        background-color: lightcoral;
      }
      .float {
        float: left;
        width: 100px;
        height: 100px;
        background-color: lightgreen;
        margin-right: 10px;
      }
      .absolute {
        position: absolute;
        top: 20px;
        left: 20px;
        width: 100px;
        height: 100px;
        background-color: lightyellow;
      }
    </style>
  </head>
  <body>
    <div class="container">
      <div class="block">Block Element</div>
      <div class="inline">Inline Element</div>
      <div class="float">Floating Element</div>
      <div class="absolute">Absolute Positioning</div>
    </div>
  </body>
</html>

在这个示例中:

原文转自:https://fe.ecool.fun/topic/de824eed-a719-4325-9c5e-143ac50891df