반응형
텍스트 영역의 오른쪽 하단 모서리에있는 점을 제거하는 방법은 무엇입니까? HTML
textarea
오른쪽 하단 에있는 점을 제거하려고합니다 .
다음은 내가 의미하는 바의 예입니다 (Chrome에서).
그 대각선을 제거하는 방법?
CSS
파일에 추가하기 만하면 됩니다.
textarea {resize: none}
HTML
sass
textarea {
position: relative;
z-index: 1;
min-width: 1141px;
min-height: 58px;
}
.resizer {
position: relative;
display: inline-block;
&:after {
content: "";
border-top: 8px solid #1c87c7;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
-webkit-transform: rotate(-45deg);
z-index: 1;
opacity: 0.5;
position: absolute;
bottom: 1px;
right: -3px;
pointer-events: none;
}
}
.arrow-resizer-textarea {
height: 0;
width: 0;
border-top: 8px solid #1c87c7;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
-webkit-transform: rotate(-45deg);
position: absolute;
bottom: 1px;
right: -3px;
pointer-events: none;
z-index: 2;
}
반응형
'UFO ET IT' 카테고리의 다른 글
WPF MVVM : 창을 닫는 방법 (0) | 2020.11.17 |
---|---|
cout 및 cin에 비트 시프트 (<< 및 >>)가 사용되는 이유는 무엇입니까? (0) | 2020.11.17 |
pip 패키지에 대한 종속성 트리를 표시하는 방법이 있습니까? (0) | 2020.11.17 |
Clojure : 휴식 대 다음 (0) | 2020.11.17 |
토큰 만료-JSON REST API-오류 코드 (0) | 2020.11.17 |