0

ブートストラップ 3.0 を使用して Web を開発していますが、次の構造になっています。

- Sidebar: width 220px, position fixed and top:0
- Content: margin-left:220px (Because of the sidebar width).
     - Topbar: position fixed and top 0

問題は、固定されたトップバーが親の幅を取得しないことです。このコードペンで私の css を確認できます: http://codepen.io/anon/pen/Fzgot

トップバーは .main-content ヘッダーにあります {} ご覧のとおり、 width:inherit を追加しましたが、機能していないようです

4

1 に答える 1

0

これはあなたが求めているものに近いですか?
http://www.bootply.com/75880

追加した

width:100%;
max-width:760px; /* set max width as req'd */  

.main-content ヘッダー セクションへ

于 2013-08-21T11:00:32.140 に答える