次のようなネストされたリストがあります。
<ul>
<li>
<a href="#" class="">Parent Links</a>
<!-- Flyoutwrapper is what expands when users hover over the parent links, the contents of flyoutwrapper will be changing, so I can not set a min-width or width -->
<div class="flyoutWrapper">
<ul class="flyout fourCol">
<li></li>
<li></li>
</ul>
</div>
</li>
</ul>
class="flyout fourCol" 内のすべての li を隣り合わせにフロートさせたい。列で。しかし、「flyout fourCol」に ~900px の最小幅を設定しない限り、各 li 要素は前の要素の下に折りたたまれます。
これは、ドロップダウンを次のように表示したいものです。
#nav .flyout.fourCol { min-width:900px; }
http://jsfiddle.net/t7esz/ (これは動作します)
#nav .flyout.fourCol { width:auto; }
http://jsfiddle.net/sumcA/2/ (これは機能しません!)