I've a div with a width of 450px. What I want to do is, whenever the div's max width has achieved, it won't start a new line.
for instance, if I have this code:
<div style="width:450px">this is my content</div>
I want the output to be:
this is my content
and if I will decide to make the div now 60px, the output will be:
this i
which means the rest of the word has gotten cut and not a new line like this:
this
is my
content
Thanks in advance!