不同浏览器中文本的大小(宽度)
我需要以精确的宽度将文本放入 div 框中。
有没有办法(例如使用 javascript)使文本在所有主要浏览器中看起来大小相同?
例如,如果文本不适合“div”框,则删除一些字母。
I need to fit text in div box with exact width.
Is there a way (for example with javascript) to make the text look the same size in all major browsers?
For example strip some letters if text does not fit 'div' box.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需将以下属性添加到您的 div 的 CSS 规则中:
您可以在此处查看此操作 (JSFiddle)。
Just add the following properties to the CSS rule for your div:
You can see this in action here (JSFiddle).
首先,使用 css 设置字体和大小。那么你几乎总是有相同的宽度。
然后你可以添加overflow:hidden;到你的div,这样它就不会显示任何超出末尾的内容。
根据您执行此操作的方式,您可以使用填充和边距而不设置宽度,这样它将始终适合 div。尽管这可能不是您想要的。
First of, set your font face and size with css. Then you will almost always have the same width.
Then you can add overflow: hidden; to your div so it won't show anything that goes past the end.
Depending on how you're doing this, you could use padding and margins without setting a width, that way it will always fit in the div. Although this may not be what you want.
您可以使用 CSS 或 JavaScript 截断文本。这是我编写的一个简单的 JQuery 截断插件的示例,如果文本被截断,它允许“显示更多”链接:
http ://jsfiddle.net/AlienWebguy/7ZamJ
You can truncate your text with CSS or with JavaScript. Here's an example of a simple JQuery truncation plugin I wrote which allows for a "show more" link if the text is truncated:
http://jsfiddle.net/AlienWebguy/7ZamJ