DIV中的中心UL表

时间:2014-05-07 20:57:34

标签: html css html-lists center

我不能将具有固定宽度的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有点太偏右了

0 个答案:

没有答案