이 기사에서는 DIV 요소 내의 세로 텍스트 오버플로를 확인하는 방법에 대한 질문을 자세히 살펴봅니다.
다음 CSS 및 HTML 코드를 고려하세요.
<code class="css">div.rounded { background-color: #FFF; height: 123px; width: 200px; font-size: 11px; overflow: hidden; }</code>
<code class="html"><div id="tempDiv" class="rounded"> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus vel quam vestibulum orci blandit laoreet. </div></code>
DIV 요소의 텍스트가 오버플로되었는지 확인하기 위해 JavaScript는 다음을 수행할 수 있습니다. 취업하다. 다음 스크립트는 요소의 scrollHeight를 해당 clientHeight와 비교합니다.
<code class="javascript">function GetContainerSize() { var container = document.getElementById("tempDiv"); var message = "The width of the contents with padding: " + container.scrollWidth + "px.\n"; message += "The height of the contents with padding: " + container.scrollHeight + "px.\n"; alert(message); }</code>
이 스크립트를 실행하면 오버플로를 포함하여 DIV 콘텐츠의 크기를 얻을 수 있습니다.
이 주제에 대한 자세한 내용은 다음을 참조하세요.
위 내용은 JavaScript를 사용하여 DIV 요소에서 세로 텍스트 오버플로를 감지하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!