<div id="divright">
lorem ipsum
lorem ipsum
lorem ipsum
</div>
css
#divright{
white-space:pre;
}
There is an extra empty line at he top of divright
content, because of white-space:pre
formatting.
How can I avoid this empty line.
I tried css display:none
- doesn't work.