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