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.
在屏幕截图中,表单文本字段设置为 97% 以在它们之间创建一个间隙。它适用于除 Firefox 之外的所有浏览器——它似乎一直延伸到 100%。任何人请给我一个解决这个问题的方法?
尝试添加box-sizing: border-box(以及相应的-moz-box-sizing, -webkit-box-sizing)。否则,填充和边距会添加到 97% 中,而不是包含在其中。
box-sizing: border-box
-moz-box-sizing
-webkit-box-sizing
我在 Mac OS 上使用 FF 13.0.1,差距显示正确。