HTML, CSS

<Textarea> </textarea> rows, cols, placeholder

유호야 2020. 10. 28. 23:12
반응형

textarea 태그의 크기를 조정하기 위해서는

rows와 cols 로 조정 그리고 placeholder를 통해서 글자 입력 전 무엇을 입력해야 할지 알릴 수 있다.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
</head>
<body>
        <textarea cols = "30" rows = "20" placeholder="Textarea 태그 작성하기"></textarea>
</body>
</html>
반응형