91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

css中常見頁面布局有哪些

發布時間:2020-08-15 10:35:08 來源:億速云 閱讀:150 作者:小新 欄目:web開發

這篇文章主要介紹css中常見頁面布局有哪些,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

公共樣式部分代碼:

    html * {
      margin: 0;
      padding: 0;
    }
    .layout {
      margin-bottom: 20px;
    }
    .layout article {
      width: 100%;
     }
    .layout article > div {
      min-height: 100px;
    }
    .layout article .left {
      width: 300px;
      background: red;
    }
    .layout article .center {
      background: orange;
    }
    .layout article .right {
      width: 300px;
      background: blue;
    }

float布局

  <!-- 浮動布局 -->
  <section class="layout float">
    <style>
      .layout.float .left {
        float: left;
      }
      .layout.float .right {
        float: right;
      }
    </style>
    <article class="left-center-right">
      <div class="left"></div>
      <div class="right"></div>
      <div class="center">
        <h3>這是float布局</h3>
        <p>這是一段文字</p>
        <p>這是一段文字</p>
      </div>
    </article>
  </section>

absolute布局

 <!-- 定位布局 -->
  <section class="layout absolute">
    <style>
      .layout.absolute .left-center-right > div {
        position: absolute;
      }
      .layout.absolute .left {
        left: 0;
      }
      .layout.absolute .center {
        left: 300px;
        right: 300px;
      }
      .layout.absolute .right {
        right: 0;
      }
    </style>
    <article class="left-center-right">
      <div class="left"></div>
      <div class="center">
        <h3>這是absolute布局</h3>
        <p>這是一段文字</p>
        <p>這是一段文字</p>
      </div>
      <div class="right"></div>
    </article>
  </section>

flex布局

  <!-- flex布局 -->
  <section class="layout flex">
    <style>
      .layout.flex {
        margin-top: 140px;
      }
      .layout.flex .left-center-right{
        display: flex;
      }
      .layout.flex .center {
        flex: 1;
      }
    </style>
    <article class="left-center-right">
      <div class="left"></div>
      <div class="center">
        <h3>這是flex布局</h3>
        <p>這是一段文字</p>
        <p>這是一段文字</p>
      </div>
      <div class="right"></div>
    </article>
  </section>

table布局

  <!-- table布局 -->
  <section class="layout table">
    <style>
      .layout.table .left-center-right {
        display: table;
        height: 100px;
      }
      .layout.table .left-center-right > div{
        display: table-cell;
      }
    </style>
    <article class="left-center-right">
      <div class="left"></div>
      <div class="center">
        <h3>這是table布局</h3>
        <p>這是一段文字</p>
        <p>這是一段文字</p>
      </div>
      <div class="right"></div>
    </article>
  </section>

grid布局

  <!-- grid布局 -->
  <section class="layout grid">
    <style>
      .layout.grid .left-center-right {
        display: grid;
        grid-template-columns: 300px auto 300px;
      }
    </style>
    <article class="left-center-right">
      <div class="left"></div>
      <div class="center">
        <h3>這是grid布局</h3>
        <p>這是一段文字</p>
        <p>這是一段文字</p>
      </div>
      <div class="right"></div>
    </article>
  </section>

以上是css中常見頁面布局有哪些的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

河东区| 永和县| 五家渠市| 获嘉县| 广宗县| 怀宁县| 萍乡市| 贵州省| 富平县| 海口市| 溧阳市| 土默特左旗| 淅川县| 乐安县| 昌乐县| 封丘县| 绍兴县| 镇康县| 郁南县| 淅川县| 卓尼县| 富平县| 昭通市| 兴义市| 淳化县| 延长县| 子洲县| 富源县| 宁陕县| 沙雅县| 南平市| 赫章县| 仙游县| 同德县| 元朗区| 安平县| 嵊州市| 民县| 唐海县| 博爱县| 海伦市|