Here is a fiddle demonstrating the problem
I have inserted many whitespace in the content of the label tag but the html rendered seems to remove it. Is adding
only solution to the above problem
HTML Content
<label>label with very long white space in between</label>
The normal behavior for the display of whitespaces is to compress them into a single one, which is then displayed.
There are two exceptions from that:
<pre>
tag, which keeps the whitespaces as entered.white-space: pre;
(respectively pre-wrap
or pre-line
)