在本文中,我们深入研究如何确定 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中文网其他相关文章!