我想通过 CSS 设置textarea‘srows和cols属性。
textarea
rows
cols
我将如何在 CSS 中做到这一点?
width并height在使用 css 路由时使用。
width
height
<!DOCTYPE html> <html> <head> <title>Setting Width and Height on Textareas</title> <style> .comments { width: 300px; height: 75px } </style> </head> <body> <textarea class="comments"></textarea> </body> </html>