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.
当我将输入和文本区域的宽度设置为 94% 时,它们的宽度似乎略有不同。这是我在许多网站上多次看到的。
谁能解释为什么 textarea 在设置为相同的 % 宽度时不如输入那么宽?
input, textarea { width: 94%; }
使用 CSS3,您还可以使用:
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */ -moz-box-sizing: border-box; /* Firefox, other Gecko */ box-sizing: border-box; /* Opera/IE 8+ */