Join the Webstudio community

Updated 3 days ago

How to make text with ellipsis

Hi all, how to make the text here with ellipsis? can you please guide me with the setting
Attachment
CleanShot_2025-04-01_at_16.33.46.png
B
J
D
3 comments
Text wrap mode: nowrap
Text overflow: ellipsis
Overflow: hidden
@Santosh , to expand on @Bogdan 's suggestion... you could turn that into a token so you don't have to look it up each time. I've written those few lines hunreds of times and still forget.
It’s more flexible than text-overflow: ellipsis with nowrap and works well for multi-line text.
display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; overflow: hidden; text-overflow: ellipsis;
Add a reply
Sign up and join the conversation on Discord