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.
我有一个表格,里面有一个只包含文本的单元格。除了reset.css、&和之外,此单元格及其父级tr和标签上没有应用任何样式,以便您清楚地看到问题。如果单元格内只有一行文本,Firefox 会添加一些我不想要的额外边距。tablevertical-align: toptdtrborder-bottom: 1px solid black
tr
table
vertical-align: top
td
border-bottom: 1px solid black
在 Chrome 中,情况并非如此。
(如何)我可以在 Firefox 中解决这个问题而不会在 Chrome 中搞砸吗?
我刚刚通过将vertical-align我的 reset.css 副本中的所有项目上的 更改为baseline来解决了这个问题top。即使tdandtr标记已经vertical-align设置为,这似乎也是必要的top。
vertical-align
baseline
top