我有以下:對齊內容
HTML
<th class="sort">
<div>
<div class="sort"></div><a href="#">Last Name</a>
</div>
</th>
CSS:
table.tablesorter thead th.sort
{
padding:0;
}
table.tablesorter thead th div.sort
{
margin:0;
width:15px;
height:30px;
float:left;
background: url("/Content/images/admin/sort.png") no-repeat;
background-position: 0px center;
cursor:pointer;
}
table.tablesorter thead tr th.sort a
{
cursor:pointer;
color:inherit;
vertical-align:middle;
float: left;
padding-top: 7px;
}
我想顯示內部和內部垂直排列中,總是在一行,這樣當瀏覽器窗口調整大小(小)時,它不會中斷,並且不會更多地位於內部(這正是現在發生的情況)。 感謝
鏈接元素(一個在你的CSS),不會浮留給你現在擁有它,因爲它不是一個塊元素。給它顯示:塊;和float:left;明確:無;屬性,它會浮動左邊給你。 – SimonDowdles 2010-08-13 08:13:59