我对此HTML脚本的问题是,我在每个padding-bottom
中总是得到div
。谁能明白为什么?
* {
margin: 0px;
padding: 0px;
}
body {
width="1920px";
height="1080px";
}

<!doctype html>
<html>
<body>
<div>
<img src="images/header.jpg">
</div>
<div>
<img src="images/stuecke.jpg">
</div>
<div>
<img src="images/termine.jpg">
</div>
<div>
<img src="images/team.jpg">
</div>
<div>
<img src="images/wo.jpg">
</div>
</body>
</html>
&#13;
答案 0 :(得分:3)
{
"config": {
"platform":{
"php":"5.5"
}
}
}
是一个内联元素,因此它与行高相距。
让他们<img>
来防止这种情况。