ブートストラップの足場を使用したいので、Web ページに合わせるにはいくつか問題があります。
fluid layout
左側にメニュー、右側にコンテンツがある単純なページを作成するために を使用しています。
これを行おうとすると2つの問題が発生します:
- 両方のメイン コンテナの間にスペースがありません。
- 両方のコンテナー内で足場を使用できますか (コードは以下にあります)。
<div class="2">
または、 and内でフロートを使用する必要があり<div class="10">
ますか?
これが私のコードです
<div class="container-fluid">
<div class="row-fluid">
<script type="text/template" id="sidebar-template">
****** SIDE BAR ******
</script>
<div class="span2">
<div id='sidebar-container'></div>
</div>
<script type="text/template" id="content-template">
<p>****** CONTENT ******</p>
</script>
<div class="span10">
<div id='content-container'></div>
</div>
</div>
</div>
これが私の最初の問題の3つのスクリーンショットです。
ありがとう。