是否可以检测 html 中发生换行的位置?
我试图计算出在给定一些 html(仅由 span、break 和 paragragh 标签和文本,没有图像、表格等)和客户端宽度的情况下会出现多少行。我还需要知道每行包含的文本。这可能吗?
I'm trying to figure out how many lines would occur given some html (only consisting of spans, break and paragragh tags and text, no images, tables, etc.) and a client width. i would also need to know the text that each line contains. is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
获取渲染内容的客户端高度(以像素为单位),然后将其除以所使用字体的高度(以像素为单位)怎么样?显然,这仅限于使用单一字体并知道该字体有多高。
What about getting the client height (in pixels) of the rendered content and then dividing that by the height (in pixels) of the font used. Obviously this is limited to using a single font and knowing how tall that font is.