의 크기 조정이 가능한 속성을 비활성화하고 싶습니다 textarea
.
현재 textarea
오른쪽 하단 모서리를 클릭 textarea
하고 마우스를 끌어서 크기를 조정할 수 있습니다 . 어떻게 비활성화 할 수 있습니까?
의 크기 조정이 가능한 속성을 비활성화하고 싶습니다 textarea
.
현재 textarea
오른쪽 하단 모서리를 클릭 textarea
하고 마우스를 끌어서 크기를 조정할 수 있습니다 . 어떻게 비활성화 할 수 있습니까?
답변:
다음 CSS 규칙은 textarea
요소의 크기 조정 동작을 비활성화합니다 .
textarea {
resize: none;
}
(전부는 아니지만) 일부를 해제하려면 textarea
하는가 s의 옵션의 커플 .
특정하지 않으려면 textarea
와 name
에 속성 세트를 foo
(예 <textarea name="foo"></textarea>
) :
textarea[name=foo] {
resize: none;
}
또는 id
속성 (예 :)을 사용하는 경우 <textarea id="foo"></textarea>
:
#foo {
resize: none;
}
W3C 페이지 없음, 둘, 수평, 수직 및 상속 : 제한 크기를 조정에 대한 목록 가능한 값 :
textarea {
resize: vertical; /* user can resize vertically, but width is fixed */
}
적절한 호환성 페이지 를 검토하여 현재이 기능을 지원하는 브라우저를 확인하십시오. Jon Hulka가 언급했듯이 CSS에서 최대 너비, 최대 높이, 최소 너비 및 최소 높이를 사용하여 치수를 더 제한 할 수 있습니다 .
알아야 할 매우 중요한 사항 :
이 속성은 overflow 속성이 visible 이외의 다른 것이 아닌 한 대부분의 요소에 대한 기본값이 아니면 아무 것도 수행하지 않습니다. 따라서 이것을 일반적으로 사용하려면 overflow : scroll;
Sara Cope의 인용문, http://css-tricks.com/almanac/properties/r/resize/
나는 두 가지를 발견했다.
먼저
textarea{resize: none}
이것은 CSS 3이며 아직 출시되지 않았 으며 Firefox 4 이상, Chrome 및 Safari와 호환됩니다 .
또 다른 형식 기능은 dir 속성 overflow: auto
을 고려하여 오른쪽 스크롤 막대를 제거하는 것입니다 .
기본 HTML
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<textarea style="overflow:auto;resize:none" rows="13" cols="20"></textarea>
</body>
</html>
일부 브라우저
CSS 3에는이를 수행 할 수있는 UI 요소에 대한 새로운 속성이 있습니다. 이 속성은 resize 속성 입니다. 따라서 모든 텍스트 영역 요소의 크기 조정을 비활성화하려면 스타일 시트에 다음을 추가하십시오.
textarea { resize: none; }
이것은 CSS 3 속성입니다. 호환성 차트 를 사용하여 브라우저 호환성을 확인하십시오.
개인적으로 텍스트 영역 요소에서 크기 조정을 비활성화하면 매우 성가신 것으로 나타났습니다. 디자이너가 사용자의 클라이언트를 "중단"하려고하는 상황 중 하나입니다. 디자인에 더 큰 텍스트 영역을 수용 할 수없는 경우 디자인 작동 방식을 다시 고려할 수 있습니다. 모든 사용자는 textarea { resize: both !important; }
자신의 사용자 스타일 시트에 추가 하여 환경 설정을 대체 할 수 있습니다.
texarea
일 것입니다.
<textarea style="resize:none" rows="10" placeholder="Enter Text" ></textarea>
깊은 지원이 필요하면 구식 기술을 사용할 수 있습니다.
textarea {
max-width: /* desired fixed width */ px;
min-width: /* desired fixed width */ px;
min-height: /* desired fixed height */ px;
max-height: /* desired fixed height */ px;
}
resize:none
이 솔루션과 함께 사용 하면 실망스럽게 작동하지 않는 하단 모서리에 핸들이 표시되지 않습니다.
이것은 HTML로 쉽게 수행 할 수 있습니다.
<textarea name="textinput" draggable="false"></textarea>
이것은 나를 위해 작동합니다. 기본값 true
은 draggable
속성입니다.
resize: none;
CSS에서 간단히 사용 하십시오.
크기 조정 속성은 사용자가 요소 있는지 여부를 지정합니다.
참고 : resize 속성은 계산 된 오버플로 값이 "표시"이외의 요소에 적용됩니다.
또한 크기 조정 순간에 Internet Explorer에서 지원되지 않습니다.
크기 조정에 대한 다른 속성은 다음과 같습니다.
크기 조정 안함 :
textarea {
resize: none;
}
두 가지 방법으로 (수직 및 가로) 크기 조정 :
textarea {
resize: both;
}
세로로 크기 조정 :
textarea {
resize: vertical;
}
가로로 크기 조정 :
textarea {
resize: horizontal;
}
또한이있는 경우 width
와 height
귀하의 CSS 나 HTML, 그것은 광범위한 브라우저 지원, 당신의 텍스트 영역의 크기를 조절할 방지 할 수 있습니다.
CSS 3은이 문제를 해결할 수 있습니다. 불행히도 현재 사용중인 브라우저의 60 % 에서만 지원됩니다 .
인터넷 익스플로러 및 iOS 용 당신은 크기 조정을 해제 할 수 없습니다, 그러나 당신은 제한 할 수 textarea
의 설정에 의해 차원을 width
하고 height
.
/* One can also turn on/off specific axis. Defaults to both on. */
textarea { resize:vertical; } /* none|horizontal|vertical|both */
속성 크기 조정 방법을 보여주는 작은 데모를 만들었습니다. 나는 그것이 당신과 다른 사람들에게도 도움이되기를 바랍니다.
.resizeable {
resize: both;
}
.noResizeable {
resize: none;
}
.resizeable_V {
resize: vertical;
}
.resizeable_H {
resize: horizontal;
}
<textarea class="resizeable" rows="5" cols="20" name="resizeable" title="This is Resizable.">
This is Resizable. Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum for use in a type specimen book.
</textarea>
<textarea class="noResizeable" rows="5" title="This will not Resizable. " cols="20" name="resizeable">
This will not Resizable. Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum for use in a type specimen book.
</textarea>
<textarea class="resizeable_V" title="This is Vertically Resizable." rows="5" cols="20" name="resizeable">
This is Vertically Resizable. Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum for use in a type specimen book.
</textarea>
<textarea class="resizeable_H" title="This is Horizontally Resizable." rows="5" cols="20" name="resizeable">
This is Horizontally Resizable. Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum for use in a type specimen book.
</textarea>
을 사용하면 @style
사용자 지정 크기를 지정하고 크기 조정 기능을 비활성화 할 수 있습니다 (resize: none;)
.
@Html.TextAreaFor(model => model.YourProperty, new { @style = "width: 90%; height: 180px; resize: none;" })
jQuery로 시도해 볼 수도 있습니다.
$('textarea').css("resize", "none");
모든 크기 조정을 비활성화하려면 textarea
:
textarea {
resize: none;
}
특정에 대해 크기 조정을 비활성화하려면 textarea
속성 name
또는을 추가하고 id
무언가로 설정하십시오. 이 경우 이름이noresize
<textarea name='noresize' id='noresize'> </textarea>
/* Using the attribute name */
textarea[name=noresize] {
resize: none;
}
/* Or using the id */
#noresize {
resize: none;
}
추가 !important
하면 작동합니다.
width:325px !important; height:120px !important; outline:none !important;
outline
특정 브라우저에서 파란색 윤곽선을 피하는 것입니다.
!important
속성을 남용하지 마십시오 . CSS 속성 resize: none
이 크기 조정 기능을 제거 할 수있는 경우 너비와 높이를 수정하는 것은 의미가 없습니다
!important
악 하지 않습니까?