我在表格单元格内的页面上使用 Facebook Like 按钮
<table style="position:relative;">
<tr style="position:relative;">
<td>
<table cellpadding='0' style='border:solid 1px black;width:100%;'>
<tr align='left'>
<td align='left'>
<fb:like send="false" layout="standard" width="350"
style="height:22px;" show_faces="false"
action="like" colorscheme="light"
></fb:like>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="left" valign="top">SOME TEXT</td>
</tr>
</table>
在 IE 9 和 Google Chrome 中,它正确显示在设置为表格的黑色边框内。
但在 Safari 中,它出现在td
.
为什么会这样?我试图将 Like Button 样式设置position
为relative
相同的东西。Safari 的 CSS 有什么不同吗?