i have
HTML file
<div>
<p class="ellipsis"> Some randomly generated text</p>
</div>
LESS(CSS) file
.ellipsis {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
I need my paragraph width to be not more then parent div width. Parent div width is based on browser window. So it may change all time. Also randomly generated text can be from 1 to 1000 symbols.