1
我在Chrome表格單元格填充方面遇到很多問題。看起來,如果表格單元格不包含純文本,則根本不應用填充。表格單元格填充問題與Chrome
我的標記:
<table>
<tr>
<th></th>
<th class="account-picture"></th>
<th class="account-name">Name</th>
<th class="account-email">Email</th>
<th class="account-last">Last Sign in</th>
</tr>
<tr>
<td>
<fieldset>
<ul>
<li><input type="checkbox" id="enabled" name="test[]" value="enabled"></li>
</ul>
</fieldset>
</td>
<td class="account-picture">
<div class="online">
<img src="http://www.genengnews.com/app_themes/genconnect/images/default_profile.jpg"> </div>
</td>
<td class="account-name">test test test test test test test test test test test test test test test test test test</td>
<td class="account-email">test test test test test test test test test test test test test test test test test test</td>
<td class="account-last">15 April 2012 10:19 AM</td>
</tr>
</table>
的CSS:
img{
height: 42px;
width: 42px;
}
td, th{
padding: 0 12px;
vertical-align: middle;
}
.account-picture{
width: 40px;
}
.account-name{
min-width: 100px;
}
.account-email{
min-width: 120px;
}
.account-last{
min-width: 140px;
}
table{
table-layout: fixed;
float: none;
width: 100%;
margin-top: 10px;
}
td, th{
word-wrap: break-word;
padding: 0 12px;
vertical-align: middle;
}
td:first-child, th:first-child{
width: 14px;
}
和提琴:http://jsfiddle.net/5mPFk/1/
而這正是它呈現爲在Firefox 11:
Chrome:18(最新版):
IE9:
可以看出,IE和FF正常工作,但無法與Chrome。爲什麼會發生這種情況,以及對此有什麼可能的解決方案?
也許這將有助於關閉你的'輸入'元素:'',雖然我覺得它有點奇怪,如果Chrome不會處理這種優雅...(同樣適用於你的'img'元素btw) – Torious 2012-04-15 01:38:48
仍然看到與關閉的輸入元素相同的問題。儘管如果使用HTML5文檔類型,我認爲沒有必要關閉輸入標籤。 – F21 2012-04-15 01:41:03