<div style="display:inline-block;width:100px;">
very long text
</div>
any way to use pure css to cut the text that is too long rather than show on next new line and only show max 100px
|
feedback
|
This is one possible approach i can think of
This way the long text will still wrap but will not be visible due to See demo here and nice overflow property description with interactive examples. | ||||
|
feedback
|
|
You can use:
to hide the text outside the zone. Note that it may cut the last letter (so a part of the last letter will still be displayed). There is no pure-CSS way to cut the text letter-by-letter. | |||
|
feedback
|
| ||||
|
feedback
|