この基本的な問題はわかりません。私は基本的に、紫色の divを黄色の divの隣に配置しようとしています。これらの2つのdivは白いdivで囲まれ、の白の divはの青の divにラップされています。固定幅が予期せず100%に変更されます
Iが左黄色と紫 divをフロート場合、白色 DIVは、960ピクセル幅から100%への固定幅を変化させ、青色 DIVは見ることができません。
どのようにこれを修正できますか?私はclear:both
を試したが、役に立たなかった。
/* Footer */
#footer-wrap{
\t width:auto;
\t height:auto;
\t background:#039;
}
#footer-content-wrap{
\t width:960px;
\t height:auto;
\t background:#EDF5F7;
\t margin:0 auto;
}
#footer-left{
\t width:500px;
\t height:200px;
\t background:#CC3;
}
#footer-right{
\t width:460px;
\t height:200px;
\t background:#96F;
}
<!-- Footer -->
<div id="footer-wrap">
<div id="footer-content-wrap">
<div id="footer-left"></div>
<div id="footer-right"></div>
</div>
</div>
</body>
</html>
私はすでにそれを試みましたが、白いdivの幅を100%にします。これはまた、青いdivを見ることができないことを意味します。 – user3760941
divの幅を縮小したり、白いdivを拡大したりできます。 – lddz