【发布时间】:2011-06-13 06:03:23
【问题描述】:
谁能帮我理解为什么#child 和#parent 的大小不一样?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Title</title>
</head>
<body>
<div id='parent' style='border: 1px solid black'>
<div id='child' style='background-color: #888888'>
<p>Here is some content</p>
<div id='grandchild' style='margin-bottom: 1em'>
<p>A little more content</p>
</div>
</div>
</div>
</body>
</html>
【问题讨论】: