Click to See Complete Forum and Search --> : How to remove space in between span tags??


sudheeral
02-02-2003, 05:27 AM
Hi,
I have to place few SPAN tags in reperate lines. Browser(IE) displays this html with spaces. I dont want any space between span tags. If I put span tags in a single line it is ok.
I have to place span tags in seperate lines for readability.

thanks

meow
02-02-2003, 06:27 AM
This doesn't have to do with SPAN but with how browsers treat whitespace. A line break will typically show up as a space. Work with it, not against it.

BTW, you get a faster response if you post in the appropriate forum, HTML in this case. :)

vickers_bits
02-02-2003, 07:44 AM
you could try puting each opening tag on the end of the line above eg:
<span>text</span><span>
text</span>

sudheeral
02-02-2003, 11:21 PM
Thanaks:rolleyes: