我不能将具有固定宽度的UL块集中在div中。我拥有的CSS是:
.container {
width: 960px;
max-width: 1260px;
min-width: 780px;
height: 100%;
background-color: #000;
display: table;margin: 0 auto;
}
.content {
display:table-cell;
list-style: none;
color: #CCC;
text-align: center;
vertical-align: middle;
}
.content li {
float: left;
width: 33%;
height: 400px;
background-color: #006;
border: 1px solid blue;
}
UL有点太偏右了