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.
フォームフィールドにはCSSを介して幅が適用されますが、テキストエリアにカーソルを合わせると、幅方向に完全に異なるサイズにサイズ変更されます。
「cols」属性が存在しないことを確認してください。
間違い:
<textarea id="some" cols="20"></textarea>
正しい:
<textarea id="some"></textarea>