1

我在 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 中呈现的内容: 在此处输入图像描述

铬:18(最新): 在此处输入图像描述

IE9: 在此处输入图像描述

可以看出,IE 和 FF 可以正常工作,但不能使用 chrome。为什么会发生这种情况以及可能的解决方案是什么?

4

1 回答 1

0

删除table-layout: fixed,它似乎工作。

如果table-layout: fixed要使用,那么应该使用而不是来定义列宽widthmin-width

不知道为什么只有 Chrome 出现了,但也许它有更好的标准实现。

于 2012-04-15T01:48:39.560 回答