1. ホーム
  2. Web制作
  3. CSS

[CSSレイアウト例】6種類の適応的な2カラムレイアウトを実現するCSS

2022-02-03 21:46:50

html構造

  <body>
        <div class="wrapper">
            <div class="left"></div>
            <div class="right"></div>
        </div>
   </body>


方法1:フレックスレイアウト

.wrapper{
    display:flex;
}
.left{
    width:200px;
    height:400px;
    background:black;
}
.right{
    flex:1;
    height:400px;
    background:red;
}


方法2:フロート

.left{
    float:left;
    width:200px;
    height:400px;
    background:black;
}
.right{
    background:red;
    height:400px;
}


方法3:BFC

.left{
    width:200px;
    height:400px;
    float:left;
    background:black;
}
.right{
    overflow:hidden;
    height:400px;
    background:red;
}


方法4:絶対位置決め

.wrapper{
    position:relative;
}
.left{
    width:200px;
    height:400px;
    background:black;
}
.right{
    position:absolute;
    top:0;
    left:200px;
    right:0;
    bottom:0;
    background:red;
}


方法5:テーブルレイアウト

.wrapper{
    display:table;
    width:100%;
}
.left,.right{
    display:table-cell;
    height:400px
}
.left{
    background:black;
}
.right{
    background:red;
}


方法6:グリッドレイアウト

.wrapper{
    display:grid;
    width:100%;
    height:400px;
    grid-template-columns:200px auto;
}
.left{
    background:black;
}
.right{
    background:red;
}



適応2列レイアウトの6種類を実現するためのCSSのこの記事は、これに導入され、より関連するCSS適応2列レイアウトの内容は、スクリプトホーム以前の記事を検索したり、次の関連記事を閲覧し続け、私はあなたが将来的にスクリプトホームをよりサポートすることを願ってください!.