我正在创建一个图片库页面,但我遇到的问题是图片没有移动到可用的空白区域。下面是一个例子:
* {
margin: 0;
padding: 0;
}
body {
width: 100%;
height: auto;
}
div {
width: 50%;
margin: 0 auto;
}
img {
float: left;
}
.lscape {
width: 33%;
}
.port {
width: 33%;
}

<div>
<img src="https://i.ytimg.com/vi/c7oV1T2j5mc/maxresdefault.jpg" class="lscape">
<img src="https://i.ytimg.com/vi/c7oV1T2j5mc/maxresdefault.jpg" class="lscape">
<img src="http://www.cat-portraits.com/Images/cat_portrait_painting_in_pastels.jpg" class="port">
<img src="http://www.cat-portraits.com/Images/cat_portrait_painting_in_pastels.jpg" class="port">
<img src="https://i.ytimg.com/vi/c7oV1T2j5mc/maxresdefault.jpg" class="lscape">
<img src="https://i.ytimg.com/vi/c7oV1T2j5mc/maxresdefault.jpg" class="lscape">
</div>
&#13;
非常感谢任何帮助!