小编典典

CSS 中 textarea 的 rows 和 cols 属性

all

我想通过 CSS 设置textarea‘srowscols属性。

我将如何在 CSS 中做到这一点?


阅读 135

收藏
2022-08-27

共1个答案

小编典典

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>
2022-08-27