我想創建一個頁面,我想調整頁腳的高度。但我失敗了。 div#F {background:yellow;height: 40px}
< - 高度不起作用。請幫忙!CSS頁腳不能調整高度
<html>
<head>
<style type="text/css">
div#C {margin:auto; width:1200px; height:830px}
div#H {background:pink;}
div#Menu {background:pink;}
div#A {float: left; width:80%; background:red; height:700px}
div#B {float: right; width: 20%; background:green;height:700px}
div#F {background:yellow;height: 40px}
</style>
<title></title>
</head>
<body>
<div id="C">
<div id="H">
</div>
<div style="height: 35px;" id="Menu">Menu</div>
<div id="A">Left floating div</div>
<div id="B">Right floating div</div>
<div id="F">Footer</div>
</div>
</body>
</html>
不'明確:left'它應該是'明確:both'作爲元素雙向浮動'left'和'right' –
@AK - 不,左邊的清理工作完全正常,因爲清除左邊會強制浮動元素下面的div。清除並清除它們也是有效的,但左邊沒有任何問題。 – j08691
我沒有說這是錯誤的我正在告訴你正確的技術:[請您參考](https://developer.mozilla.org/en-US/docs/Web/CSS/clear) –