admin管理员组文章数量:1340773
Basically, I have a certain HTML element (in this case, a div) that is wrapping to a new line in the case of a below average screen resolution, due to a floating element. I want to control this behavior, placing and/or styling the element differently if indeed it is currently wrapped or will be wrapped upon resize/onload.
Is this possible?
Basically, I have a certain HTML element (in this case, a div) that is wrapping to a new line in the case of a below average screen resolution, due to a floating element. I want to control this behavior, placing and/or styling the element differently if indeed it is currently wrapped or will be wrapped upon resize/onload.
Is this possible?
Share Improve this question edited Mar 1, 2012 at 19:49 animuson♦ 54.8k28 gold badges142 silver badges150 bronze badges asked Feb 1, 2011 at 13:49 Chris CashwellChris Cashwell 22.9k13 gold badges66 silver badges98 bronze badges 1- What if a user wants to enhance the size by C^+ or something of that nature. Do you still want to resize given element to be specific width? That would frustrate me if you kept resizing what I was trying to enhance. – Chris Commented Feb 1, 2011 at 13:54
1 Answer
Reset to default 13You can count the number of text rectangles it has using element.getClientRects()
, which returns a ClientRect object for each border-box of an element. This must be done on an inline element such as a <span>
for each line of text to have its own border-box, but it's simple enough to use:
window.onresize = function () {
var span = document.getElementById("myDiv").getElementsByTagName("span")[0],
rect = span.getClientRects();
if (rect.length > 1) // more than 1 line of text
doSomethingWithElement(span.parentNode);
}
本文标签: javascriptAny way to determine if an element is wrappedStack Overflow
版权声明:本文标题:javascript - Any way to determine if an element is wrapped? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743611245a2510053.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论