11-5.浮动布局商品列表
浮动元素布局商品列表
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>浮动布局商品列表</title>
<link rel="stylesheet" type="text/css" href="../reset.css"/>
<style type="text/css">
ul{width: 860px;height: 280px;background: #ccc;margin: 50px auto;}
ul .one{width: 200px;height: 280px;}
ul .two{width: 200px;height: 130px;}
ul li{float: left;margin: 0 20px 20px 0;}
ul li img{width: 100%;height: 100%;}
</style>
</head>
<body>
<ul>
<li class="one"><img src="img/01.jpg" /></li>
<li class="one"><img src="img/02.jpg" /></li>
<li class="two"><img src="img/03.jpg" /></li>
<li class="two" style="margin-right: 0;"><img src="img/04.jpg" /></li>
<li class="two"><img src="img/05.jpg" /></li>
<li class="two" style="margin-right: 0;"><img src="img/06.jpg" /></li>
</ul>
</body>
</html>
posted on 2021-11-22 20:03 Walker-Yang 阅读(61) 评论(0) 收藏 举报
浙公网安备 33010602011771号