主頁
HTML
HTML 表單元素
Tryit: 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>