Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
表格的CSS代码为:
table.ctable td { width:60px; height:60px; }
但在 Safari 浏览器中,表格单元格的高度大于宽度(我没有设置整个表格的尺寸)。
知道如何解决这个问题吗?
元素的所有侧面都有填充。所以你必须删除它们。
table.ctable td { width:60px; height:60px; padding:0 0 0 0; }