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.
我正在使用文本输入字段和选择框制作表单。每个输入都采用另一种形式 td。我对输入字段的边框有疑问。与其他浏览器不同,Firefox 默认将边框嵌入。通过声明文档类型,这个问题通常可以解决(我使用:) <!DOCTYPE html>。无论如何,它不会与选择框。其他浏览器没有问题。
<!DOCTYPE html>
<select>在所有浏览器中默认具有边框大小。因此,如果您正在设置显式大小,您将看到上述行为。您可以使用-moz-box-sizing: content-box; box-sizing: content-box覆盖默认值。
<select>
-moz-box-sizing: content-box; box-sizing: content-box