css常見的各種佈局上(兩列佈局)

来源:https://www.cnblogs.com/czkolve/archive/2019/04/14/10698682.html
-Advertisement-
Play Games

常見的佈局上(兩列佈局) 1.常見的兩列佈局 1.1左邊固定,右邊自適應,左邊寬度已知,右邊預設占滿整行,使用left 左浮動,右邊不浮動,設置margin-left:左側寬度 1.2右側固定,寬度已知,左側自適應,記住固定的區域一定要放自適應區域的右邊, 單列固定都是比較簡單的還有嵌套一層div方 ...


  常見的佈局上(兩列佈局

    1.常見的兩列佈局

      1.1左邊固定,右邊自適應,左邊寬度已知,右邊預設占滿整行,使用left 左浮動,右邊不浮動,設置margin-left:左側寬度

<style>
        .box{
            overflow: hidden;
            height: 500px;
            background-color: bisque;
        }
        .box .box-left {
            margin-left: 10px;
            width: 200px;
            min-height: 100%;
            float: left;
            background-color: pink;
        }
        .box .box-right {
            margin-left: 220px;
            margin-right: 10px;
            height: 100%;
            background-color: green;
        }
        header,footer {
            height: 75px;
            background-color: aqua;
        }
    </style>
<div class="box"> 
        <div class="box-left">
            11
        </div>
        <div class="box-right">
            1shishsihsishsihi是不變的沙發電視櫃很多水果和客戶的感慨的沙發電視櫃很多水果和客戶的感慨大蘇打撒郭德綱你只是  第三個大概瞭解斯大林經過拉絲幾個垃圾
        </div> 
    </div>

      1.2右側固定,寬度已知,左側自適應,記住固定的區域一定要放自適應區域的右邊,

.box{
            height: 500px;
            background-color: bisque;
            position: relative;
        }
        .box .box-right {
            float: right;
            width: 200px;
            min-height: 100%;
            margin-right: 10px;
            background-color: pink;
        }
        .box .box-left {
            margin-left: 10px;
            margin-right: 220px;
            height: 100%;
            background-color: green;
        }
        header,footer {
            height: 75px;
            background-color: aqua;
        }
<div class="box"> 
        <div class="box-right">
            11
        </div>
        <div class="box-left">
            1shishsihsishsihi是不變的沙發電視櫃很多水果和客1111111111111111111111戶的感慨的沙發電視櫃很多水果和客戶的感慨大蘇打撒郭德綱你只是  
        第三個大概瞭解斯大林經過拉絲幾個垃圾
</div> </div>

    單列固定都是比較簡單的還有嵌套一層div方式,還有彈性佈局方式,還有grid佈局,都能實現單側固定

    1.3 嵌套一層div ,左側固定,右側自適應佈局,使用雙浮動,右側自適應先寫入,左側使用margin-left:-100%

      不嵌套一層div,右側直接使用margin-left:左側寬度也是可以的(這個代碼就不寫了,和第一個差不多)

<style>
        .box{
            height: 500px;
            background-color: bisque;
            position: relative;
            overflow: hidden;
        }
        .box .box-right {
            float: left;
            margin-left: -100%;
            width: 200px;
            min-height: 100%;
            background-color: pink;
        }
        .box .box-left {
            float: left;
            width: 100%;
            height: 100%;
            background-color: green;
        }
        .box .box-left .son {
            margin-left: 210px;
        }
        header,footer {
            height: 75px;
            background-color: aqua;
        }
    </style>

<body>
    <header>

    </header>
    <div class="box"> 
        <div class="box-left">
            <div class="son">
                1shishsihsishsihi是不變的沙發電視櫃很多水果和客1111111111111111111111戶的感慨的沙發電視櫃很多水果和客戶的感慨大蘇打撒郭德綱你只是 
           第三個大概瞭解斯大林經過拉絲幾個垃圾
</div> </div> <div class="box-right"> 11 </div> </div> <footer> </footer> </body>

    1.4 t彈性佈局

<style>
        .box{
            height: 500px;
            background-color: bisque;
            position: relative;
            display: flex;
        }
        .box .box-left {
            margin-left: 10px;
            flex: 0 0 200px; /* 參數分別是 放大,縮小 初始大小 */
            background-color: pink;
        }
        .box .box-right {
            margin-left: 10px;
            margin-right: 10px;
            height: 100%;
            background-color: green;
        }
        header,footer {
            height: 75px;
            background-color: aqua;
        }
    </style>
<body>
    <header>

    </header>
    <div class="box"> 
        <div class="box-left">
            11
        </div>
        <div class="box-right">
            1shishsihsishsihi是不變的沙發電視櫃很多水果和客1111111111111111111111戶的感慨的沙發電視櫃很多水果和客戶的感慨
        大蘇打撒郭德綱你只是 第三個大概瞭解斯大林經過拉絲幾個垃圾
</div> </div> <footer> </footer> </body>

    1.5 grid佈局,grid相對於flex的話屬於二維佈局,可以定義行數,定義列數,定義行高列高,寬度也可以自適應,設置父容器的display:grid。grid 有很大的相容性問題。慎用

      使用grid 相當於設置行數為1,列數為2的grid佈局,使用grid可以很容易實現九宮格佈局

<style>
        .box{
            height: 500px;
            background-color: bisque;
            position: relative;
            display: grid;
            padding: 0 10px;
            grid-template-rows: 1fr;
            grid-template-columns: 200px auto;
            grid-gap: 10px;
        }
        .box .box-left {
            background-color: pink;
        }
        .box .box-right {
            background-color: green;
        }
        header,footer {
            height: 75px;
            background-color: aqua;
        }
    </style>
<body>
    <header>

    </header>
    <div class="box"> 
        <div class="box-left">
            11
        </div>
        <div class="box-right">
            1shishsihsishsihi是不變的沙發電視櫃很多水果和客1111111111111111111111戶的感慨的沙發電視櫃很多水果和客戶的感慨
        大蘇打撒郭德綱你只是  第三個大概瞭解斯大林經過拉絲幾個垃圾
        </div> 
    </div>
    <footer>

    </footer>
</body>

    使用grid實現9宮格佈局

<style>
        .box{
            height: 500px;
            background-color: bisque;
            position: relative;
            display: grid;
            padding: 0 10px;
            grid-template-rows: 1fr 1fr 1fr;
            grid-template-columns: 1fr 1fr 1fr;
            grid-gap: 10px;
        }
        .box .box-left {
            background-color: pink;
        }
        .box .box-right {
            background-color: green;
        }
        header,footer {
            height: 75px;
            background-color: aqua;
        }
    </style>
<body>
    <header>

    </header>
    <div class="box"> 
        <div class="box-left">
            11
        </div>
        <div class="box-right">
            1shishsihsishsihi是不變的沙發電視櫃很多水果和客1111111111111111111111戶的感慨的沙發電視櫃很多水果和客戶的感慨
        大蘇打撒郭德綱你只是  第三個大概瞭解斯大林經過拉絲幾個垃圾
        </div> 
        <div class="box-left">
            11
        </div>
        <div class="box-right">
            1shishsihsishsihi是不變的沙發電視櫃很多水果和客1111111111111111111111戶的感慨的沙發電視櫃很多水果和客戶的感慨
        大蘇打撒郭德綱你只是  第三個大概瞭解斯大林經過拉絲幾個垃圾
        </div> 
        <div class="box-left">
            11
        </div>
        <div class="box-right">
            1shishsihsishsihi是不變的沙發電視櫃很多水果和客1111111111111111111111戶的感慨的沙發電視櫃很多水果和客戶的感慨
        大蘇打撒郭德綱你只是  第三個大概瞭解斯大林經過拉絲幾個垃圾
        </div> 
        <div class="box-left">
            11
        </div>
        <div class="box-right">
            1shishsihsishsihi是不變的沙發電視櫃很多水果和客1111111111111111111111戶的感慨的沙發電視櫃很多水果和客戶的感慨
        大蘇打撒郭德綱你只是  第三個大概瞭解斯大林經過拉絲幾個垃圾
        </div> 
        <div class="box-left">
            11
        </div>
    </div>
    <footer>

    </footer>
</body>
View Code

    1.6 使用定位實現左側固定右側自適應佈局,

      1.6.1使用相對定位,該佈局,左側固定div 的高度已知,

<style>
        .box{
            height: 500px;
            background-color: bisque;
            position: relative;
        }
        .box .box-left {
            margin-left: 10px;
            width: 200px;
            height: 400px;
            background-color: pink;
        }
        .box .box-right {
            position: relative;
            top: -100%;
            margin-left: 220px;
            height: 100%;
            background-color: green;
            margin-right: 10px;
        }
        header,footer {
            height: 75px;
            background-color: aqua;
        }
    </style>
<body>
    <header>

    </header>
    <div class="box"> 
        <div class="box-left">
            11
        </div>
        <div class="box-right">
            1shishsihsishsihi是不變的沙發電視櫃很多水果和客1111111111111111111111戶的感慨的沙發電視櫃很多水果和客戶的感慨
            大蘇打撒郭德綱你只是  第三個大概瞭解斯大林經過拉絲幾個垃圾
        </div> 
    </div>
    <footer>

    </footer>
</body>
View Code

      1.6.2 使用相對定位實現左側固定,右側自適應,div高度未知,將自適應的模塊放前面,固定寬度div設置top:-100%

<style>
        .box{
            height: 500px;
            background-color: bisque;
            position: relative;
        }
        .box .box-left {
            position: relative;
            top: -100%;
            margin-left: 10px;
            width: 200px;
            height: 400px;
            background-color: pink;
        }
        .box .box-right {
            margin-left: 220px;
            height: 100%;
            background-color: green;
            margin-right: 10px;
        }
        header,footer {
            height: 75px;
            background-color: aqua;
        }
    </style>
<body>
    <header>

    </header>
    <div class="box"> 
        <div class="box-right">
            1shishsihsishsihi是不變的沙發電視櫃很多水果和客1111111111111111111111戶的感慨的沙發電視櫃很多水果和客戶的感慨
            大蘇打撒郭德綱你只是  第三個大概瞭解斯大林經過拉絲幾個垃圾
        </div> 
        <div class="box-left">
            11
        </div>
    </div>
    <footer>

    </footer>
</body>
View Code

      1.6.3 使用絕對定位,兩個模塊都使用絕對定位,可以不使用浮動

<style>
        .box{
            height: 500px;
            background-color: bisque;
            position: relative;
        }
        .box .box-left {
            position: absolute;
            margin-left: 10px;
            width: 200px;
            height: 400px;
            background-color: pink;
        }
        .box .box-right {
            position: absolute;
            margin-left:	   

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 日常項目中,經常遇到一些表情雨/金幣雨/彩帶雨 等下落的動畫,之前做android原生的時候,寫過類似的效果,主要通過自定義view 在 里繪製下落的過程,具體可以看下我的這篇github地址 "android 仿微信表情雨下落" ,現在轉戰 ,同樣可以實現這樣的效果,主要用到的動畫庫 "react ...
  • 這個世界唯一不變的可能就是變化,歷史的車輪滾滾向前,它不會因任何人的消極緩慢而停止。時代拋棄你時,連一聲再見都不會說。 從最開始的Javascrpit、到後來的Jquery、(ExtJs、EasyUI、MiniUI)、Bootstrap、Layui,再到如今的mvvm框架(Vue.js、Angula ...
  • HTML標記語言,網頁製作的第一步。 什麼是HTML呢?查百度 基礎語法 常用標簽 HTML是超文本標記語言,HTML不用編譯,直接在瀏覽器中執行,HTML是一個文本文件。 HTML基本結構,標簽,元素,屬性,註解 標簽屬性格式: 文檔類型聲明: 編碼文件 標題標簽,段落標簽,預格式化標簽,水平線 ...
  • DOM編程 首先,需要明確JavaScript訪問DOM性能的開銷所在。在瀏覽器中。對於DOM和ECMAScript的支持一般是各自獨立實現的,因此通過ECMAScript訪問DOM自然而然就會產生較大的開銷,而且對於DOM的訪問越頻繁,性能的開銷越大。 儘量將運算放在ECMAScript中進行,避 ...
  • 前端通過請求獲取數據流生成文檔文件的方式是一種開發下載文檔的方式,那麼在前端如何將數據流轉成文檔呢?代碼如下 ...
  • 1引言 HTTP是一個屬於應用層的面向對象的協議,由於其簡捷、快速的方式,適用於分散式超媒體信息系統。它於1990年提出,經過幾年的使用與發展,得到不斷地完善和擴展。目前在WWW中使用的是HTTP/1.0的第六版,HTTP/1.1的規範化工作正在進行之中,而且HTTP-NG(Next Generat ...
  • 前端性能優化一直是前端工作中必不可少的一部分,但是我們如何知道哪些部分的性能有優化的空間呢?此時,Chrome 性能監測就派上用場了。 正所謂:知己知彼,百戰百勝,只有確定了性能瓶頸,才能有條不紊地進行前端性能優化工作。 Performance Performance 是 Chrome 開發者工具中 ...
  • vue或element-ui有的時候tab列表裡需要編輯一些東西,使用後臺分頁是需要調介面的,這個時候你編輯的東西翻頁後就不存在了,就需要拿到所有數據後在前端進行分頁,數據就不會丟失了,這個時候就可以把編輯後的數據一起傳給後臺。 this.settlementData這裡是介面拿回來的所有數據, 然 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...