Quantcast
Channel: CSSタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 8595

2カラムレイアウト作成

$
0
0

サイトでよくある2カラムレイアウトを作成する。

・左レイアウトは300px固定で右レイアウトは可変にする。
・親要素にdisplay: flexをつける
・可変レイアウトにはflex: 1をつける

.parent{display:flex;height:100vh;}.menu{width:300px;background-color:violet;}.content{flex:1;background-color:aqua;}
importReactfrom'react'import'./Column2Layout.css'exportconstColumn2Layout=()=>{return(<divclassName="parent"><divclassName="menu"></div><divclassName="content"></div></div>)}

スクリーンショット 2020-11-17 23.04.23.png


Viewing all articles
Browse latest Browse all 8595


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>