admin管理员组文章数量:1344297
I have a container with the width: 500px. In this container there are 2 strings, "iiiiiiiiiiiiiii" and "MMMMMMMMMMMMMMM". You can clearly see that the "M" string is a lot wider than the "i" string, but both fit in the 500px screen.
If i make the container smaller, lets say 350px the M string is too wide and i want to remove some 'M's so it can fit as so:
In React i have the following data:
var i = 'iiiiiiiiiiiiiii';
var M = 'MMMMMMMMMMMMMMM';
var containerWidth = 500;
Based on what information do I shorten the strings?
I started out with if string.length > containerWidth / 10
, but thats not right because string-length != width. I can't use getElementById
and then use .offsetWidth
I have a container with the width: 500px. In this container there are 2 strings, "iiiiiiiiiiiiiii" and "MMMMMMMMMMMMMMM". You can clearly see that the "M" string is a lot wider than the "i" string, but both fit in the 500px screen.
If i make the container smaller, lets say 350px the M string is too wide and i want to remove some 'M's so it can fit as so:
In React i have the following data:
var i = 'iiiiiiiiiiiiiii';
var M = 'MMMMMMMMMMMMMMM';
var containerWidth = 500;
Based on what information do I shorten the strings?
I started out with if string.length > containerWidth / 10
, but thats not right because string-length != width. I can't use getElementById
and then use .offsetWidth
- 2 For me, you can achieve your goal, without using js – Kamil Naja Commented Jun 19, 2018 at 9:39
1 Answer
Reset to default 12You can do that with css only:
.container {
width: 350px;
border: 2px solid black;
padding: 20px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
<div class="container">
IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII<br>
MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
</div>
Will result in something like this. Run the snippet for a live demo.
---------------------
| IIIIIIIIIIIIIIIIII|
| MMMMMMMMMMMMMMM...|
---------------------
本文标签: javascriptReactShorten string based on widthStack Overflow
版权声明:本文标题:javascript - React - Shorten string based on width - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743800492a2541220.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论