0
我試圖將表格中的圖像置於中心位置。我可以將它固定在單元格的底部或水平居中,但不能同時執行兩個動作。是因爲相對/絕對位置? 中心跨度在表格單元格
<body>
<style>
#sum td{
\t position:relative;
\t text-align:center !important;
\t vertical-align: center;
\t width:400px;
\t }
#sum tr{
\t height:280px;
\t }
#sum td span{
\t position:absolute;
\t bottom:0;
\t display:block;
\t text-align:right;
\t }
</style>
<content>
\t <div>
\t \t <ul>
\t \t \t <table id="sum"> \t
\t \t \t \t <tr>
\t \t \t \t \t <td class="col-md-4">
\t \t \t \t \t \t <li><img class="pic"src="#">
\t \t \t \t \t \t <span>xxx
\t \t \t \t \t \t </span>
\t \t \t \t \t \t </li>
\t \t \t \t \t </td>
\t \t \t \t </tr> \t
\t \t \t </table>
\t \t </ul>
\t </div>
</content>
</body>
的probem是我有不同大小的圖像,我必須包括關於底部位置的線的另一種方式的文本沒有垂直對準。 –
@AnnaŠtulcová我不明白。一定要在OP中明確指出問題,這樣我們就不會浪費彼此的時間。你沒有提到其他圖像,爲什麼你必須使用底部定位,或任何關於你的OP垂直對齊。 –