ホームページ >ウェブフロントエンド >CSSチュートリアル >Bootstrap は固定列レイアウトと流動的な列レイアウトを作成できますか?
Twitter Bootstrap を使用して 2 列の流体固定レイアウトを作成する方法
質問:
Twitterを使用して固定流体2カラムレイアウトを実装できますかBootstrap?
解決策:
はい、Bootstrap 2.0 以降では可能ですが、標準クラスの実装にいくつかの変更が必要です。これは HTML を使用した解決策です。 CSS:
HTML:
<div class="container-fluid fill"> <div class="row-fluid"> <div class="fixed"> <!-- Fixed width div --> ... </div> <div class="hero-unit filler"> <!-- Filler div without spanX class --> ... </div> </div> </div>
CSS:
/* Fixed-fluid layout */ .fixed { width: 150px; float: left; } .fixed + div { margin-left: 150px; overflow: hidden; } /* Equal height columns (optional) */ html, body { height: 100%; } .fill { min-height: 100%; position: relative; } .filler:after{ background-color:inherit; bottom: 0; content: ""; height: auto; min-height: 100%; left: 0; margin:inherit; right: 0; position: absolute; top: 0; width: inherit; z-index: -1; }
説明:
以上がBootstrap は固定列レイアウトと流動的な列レイアウトを作成できますか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。