我無法在文字居中的我的TD中有一個colspan大於1,我已經將文字對齊中心添加到每一個標籤並且什麼也沒有。水平放置表格中的文字
HTML:(我刪除了所有但不會居中我已經離開了所有相關的這段文字標籤的項目之一)
div.OBJ {
display: table-cell;
text-align: center;
}
div.scroll {
width: 100%;
height: 600px;
overflow-y: scroll;
overflow-x: auto;
text-align: center;
}
td {
text-align: center;
}
table {
border-collapse: collapse;
table-layout: fixed;
align: center;
text-align: center;
}
a:link {
color: #000000;
text-decoration: none;
text-align: center;
}
a:visited {
color: #000000;
text-decoration: none;
text-align: center;
}
a:hover {
color: #ff0000;
text-decoration: underline;
text-align: center;
}
div {
text-align: center;
}
span {
text-align: center;
}
<div class="scroll">
<table border="1" style="width:100%">
<tr id="{{ParentObject.id}}">
<td id="{{ParentObject.id}}" colspan="{{object.size}}" style="background-color:{{object.bgColor}}" data-begin="{{object.begin}}" data-end="{{object.end}}">
{% multiply object.size colWidth as colSize %}
<div id="{{object.id}}" class="OBJ" style="width:{{colSize}}%">
<a id="{{object.id}}" href="link" title="hover text">
<span id="{{object.id}}" class="object">
{{object.name}}
</span>
</a>
</div>
</td>
</tr>
</table>
</div>
[使用.css連接colspan =「2」的表數據中心文本的可能重複「選擇具有屬性colspan =」2「的td」](http://stackoverflow.com/questions/25594610/center-text -of-table-data-connected-with-colspan-2-with-css-select-td-with) – Jason
嘗試添加'div {margin:auto;}',因爲它設置了寬度。 – Stickers
可能的重複沒有幫助,因爲我使用Django使colspans的寬度變化。 @jason – user2788328