I want to create a span with a fixed width that when I type any thing in the span like lgasdfjksdajgdsglkgsadfasdfadfasdfadsfasdfasddkgjk
lgasdfjksdajgdsglkgsadfasdfadfasdfadsfasdfasddkgjk
In my case, display: block was breaking the design as intended.
The max-width property just saved me.
max-width
and for styling, you can use text-overflow: ellipsis as well.
text-overflow: ellipsis
my code was
max-width: 255px overflow:hidden