3 Attachment(s)
[RESOLVED] Was wondering why am I seeing white line in this simple example?
Please take a look at the screenshots attached. The ASP/HTML code is also visible in one of them. I was wondering why am I getting this white line when the page is rendered in the web browser? (I tried it with IE, FF, and Chrome and all produced the same result.)
PS. I'm also attaching the project where I took it from.
Re: Was wondering why am I seeing white line in this simple example?
Possible Reasons..
#1: Master page settings overriding
#2: CSS
Re: Was wondering why am I seeing white line in this simple example?
By default the table rows have a border. Try setting the border of the table to none in your css.
also try viewing the page in a browser other then IE.
Re: Was wondering why am I seeing white line in this simple example?
Quote:
Originally Posted by
GremlinSA
Possible Reasons..
#1: Master page settings overriding
What is it?
Quote:
Originally Posted by
GremlinSA
Possible Reasons..
#2: CSS
I removed all CSS to be sure.
Quote:
Originally Posted by
blaurent
By default the table rows have a border. Try setting the border of the table to none in your css.
also try viewing the page in a browser other then IE.
Guys I posted a project up there. Can you try loading it and see if you have the same result.
And, blaurent, as I stated above, I did try it in three separate browsers with the same result.
Re: Was wondering why am I seeing white line in this simple example?
Change the table style like follows
Code:
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="font-size: 1px">
should fix your problem....
Re: [RESOLVED] Was wondering why am I seeing white line in this simple example?
Thank you. Actually setting the font size to 0 would also do it.