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.
お問い合わせフォームのコードがありますが、メッセージ ボックスの幅を変更する場所がわからないため、カスタム エキスパンドではなく、幅が制限されていますか?
http://s197371217.websitehome.co.uk/try/contact.html
そのために通常のCSSを使用できます
textarea { width: 200px; height: 200px; resize: none /* disables resizing */ }
次の方法を使用できます。
<textarea rows="5" name="message" cols="30"></textarea>
の数値を変更してrows適切な値にすることも、メソッドcolsを使用することもできますhex4's。
rows
cols
hex4's