以下代码来自 W3CSchool 示例:
<!DOCTYPE html>
<html>
<body>
<div id="container" style="width:500px">
<div id="header" style="background-color:#FFA500;">
<h1 style="margin-bottom:0;">Main Title of Web Page</h1></div>
<div id="menu" style="background-color:#FFD700;height:200px;width:20%;float:left;">
<b>Menu</b><br>
HTML<br>
CSS<br>
JavaScript</div>
<div id="content" style="background-color:#EEEEEE;height:200px;width:80%;">
Content goes here</div>
<div id="footer" style="background-color:#FFA500;text-align:center;">
Copyright © W3Schools.com</div>
</div>
</body>
</html>
您可以复制代码并将其粘贴到下面的编辑器中: http ://www.w3schools.com/html/tryit.asp?filename=tryhtml_layout_divs
我已经将“菜单”的宽度指定为 20%,“内容”的宽度为 80%,为什么“内容”的右侧有一个空白区域?
如果我在“内容”的 css 样式中添加“float:left”,它只会正确对齐。我不明白为什么它会这样。谁能解释一下?
感谢帮助。