我正在創建電子郵件模板 - 當然使用表格。中心對齊顯示:表格單元格內td
我在td
裏面有一個圓形的p
元素,爲了垂直對齊它的內容,我使用了display: table-cell
屬性。
的問題是,現在用margin: 0 auto
任何更多的,即使在td
不居中對齊圓見jsfiddle
HTML:
<table>
<tr>
<td class="circle">
<p><b>12</b><br/>views</p>
</td>
</tr>
</table>
CSS:
td {
width: 140px;
}
table td.circle p {
margin: 0 auto;
height: 70px;
width: 70px;
background-color: rgb(92, 177, 251);
border-radius: 50%;
text-align: center;
display: table-cell;
vertical-align: middle;
}
怎麼樣ñ我中心對齊圓圈,而不使用電子郵件不支持的額外定位黑客?
「align」屬性在HTML5中不受支持。 –
是的,它不支持 –