textarea 크기조절 css
@욕심쟁이
·2019. 9. 19. 17:45
반응형
<style>
<!-- 조절안되게 막기 -->
textarea {resize: none;}
<!-- 높이 및 너비 모두 조절(기본처리) -->
textarea {resize: both;}
<!-- 높이만 조절 -->
textarea {resize: vertical;}
<!-- 너비만 조절-->
textarea {resize: horizontal;}
</style>
<textarea></textarea>
반응형
'IT > CSS' 카테고리의 다른 글
reset.css (0) | 2019.12.11 |
---|---|
a태그 :hover 시 움직임 (0) | 2019.12.11 |
블라인드 처리 방법 (0) | 2019.09.19 |
CSS정리 (0) | 2019.09.19 |
css에 관한 유익한 사이트 (0) | 2019.09.19 |