首页
HTML
HTML 表单元素
尝试:HTML 样式 textarea
运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h2>Styling Textarea</h2> <p>Use CSS to change the size of the textarea:</p> <form action="/action_page.php"> <textarea name="message" style="width:200px; height:600px;">The cat was playing in the garden.</textarea> <br> <input type="submit"> </form> </body> </html>