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.
width: 100%;テキストエリアまたは入力テキスト を設定するたびに、それらが親の幅を超えていることに気づきました。
width: 100%;
textareaとtextフィールドは、コンテナ内で10ピクセルのパディングで囲まれています。周囲のバウンディングボックスに当たったら停止させる方法はありますか?width:100%;要素を作成するためのベストプラクティスは何ですか?
width:100%;
私はcssリセットを提案します:
textarea, input { padding: 0; margin: 0; }
また、親の幅と一致することにも注意してwidth:100%ください。ただし、境界線を考慮に入れる必要があります。box-sizingこの記事で学びたいと思うかもしれません:
width:100%
box-sizing
http://paulirish.com/2012/box-sizing-border-box-ftw/