티스토리 뷰

WEB/css

textarea 사이즈 수정

silverline79 2021. 6. 30. 10:18

<textarea class="resizeNone "></textarea>

 

.resizeNone {
  resize: none; /* 사용자 임의 변경 불가 */
}

.resizeBoth {
  resize: both; /* 사용자 변경이 모두 가능 */
}

 

.resizeHor {
  resize: horizontal; /* 좌우만 가능 */
}

 

.resizeVer {
  resize: vertical; /* 상하만 가능 */
}

 

 

 

 

https://developer.mozilla.org/en-US/docs/Web/CSS/resize

 

resize - CSS: Cascading Style Sheets | MDN

The resize CSS property sets whether an element is resizable, and if so, in which directions.

developer.mozilla.org

 

'WEB > css' 카테고리의 다른 글

그라디언트 css  (0) 2021.07.21
font-awesome-4.7.0  (0) 2021.07.06
버튼 투명처리 후 배경  (0) 2021.06.29
닫기버튼 회전 애니메이션  (0) 2021.06.29
box-shadow 투명적용  (0) 2021.06.29
댓글