在本文中,我們深入研究如何確定 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 可以被雇用。以下腳本將元素的滾動高度與其客戶端高度進行比較:
<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中文網其他相關文章!