如何将列表放置在页面的中心。在 html 中,您可以创建一个表格并使用例如 100% 的表格宽度来执行此操作,然后您可以划分每个部分。但我想摆脱它,并希望更多地关注我的 CSS。我创建了一个 div,我的列表的 css 现在看起来像这样:
.list {
margin-left: auto;
margin-right: auto;
width: 6em;
background: white;
position: absolute;
height: auto;
border: 1px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-border-radius: 10px;
border-radius: 10px;
}
编辑:我已经创建了一个无序列表并将其标记在一个带有类名“list”的 div 中我只想知道如何将列表放在站点中间。我很抱歉不够明确。