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% に設定すると、幅がわずかに異なるように見えます。これは私が多くのサイトで何度も見たものです。
同じ % 幅に設定されている場合、テキストエリアが入力ほど広くない理由を誰かが説明できますか?
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+ */