我试图让这个表格居中,但每当我查看页面时,它都会显示为左对齐。
CSS
.center {
margin-left:auto;
margin-right:auto;
}
#hor-minimalist-a
{
font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif;
font-size: 16px;
background: transparent;
margin: 45px;
width: 480px;
border-collapse: collapse;
text-align: center;
line-height: 1.6em;
}
#hor-minimalist-a th
{
font-size: 14px;
font-weight: normal;
color: #039;
padding: 10px 8px;
border-bottom: 2px solid #6678b1;
}
#hor-minimalist-a td
{
color: #669;
padding: 9px 8px 0px 8px;
}
这是我用来测试的html:
<table class="center" id="hor-minimalist-a" >
All of the table data goes here
</table>