<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>css列表左右对齐</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<style type="text/css">
*{
margin: 0;
padding: 0;
}
li{
list-style: none;
}
.wraper{
width: 1000px;
margin:0 auto;
}
.goods-list{
overflow: hidden;
background: red;
margin-top: 50px;
}
.goods-list ul{
width: 110%;
}
.goods-list ul li{
width: 230px;
height: 230px;
background: orange;
float: left;
margin: 0px 27px 20px 0px;
}
</style>
</head>
<body>
<div class="wraper">
<div class="goods-list">
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>