1. ホーム
  2. css

[解決済み] CSSのtextareaのrows, cols属性について

2022-04-23 17:01:13

質問

を設定したいのですが textarea 's rowscols 属性をCSSで指定します。

CSSでこれを行うにはどうしたらよいでしょうか。

どのように解決するのですか?

widthheight は、cssで記述する場合に使用します。

<!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>