Lately, I've had Internet Explorer 6 cause text to be hidden (until you highlight it or scroll) in one paragraph block on my web site. The affected document is contact.php. The bug affects the first paragraph on contact.php (the one that starts with "Fields marked with a *... ") and also affects various php output from the document that handles the form data. (sent.php)
The affected text is enclosed in a regular paragraph tag, and here's my CSS definition for P:
According to W3C, my CSS is valid and the document in question validates as XHTML 1.0 Strict, so I'm not sure what's causing the problem.
The problem does not occur in IE7, (or any other browser I've tested with) so is it just one of the problems endemic to IE6? I've googled for it and come up with nothing.
Although I hate that browser as much as any other developer, I still see plenty of people using it. Therefore, I have no choice but to develop for it.
The affected text is enclosed in a regular paragraph tag, and here's my CSS definition for P:
Code:
p{ font-family: verdana, arial, sans-serif; font-size: 10pt; font-weight: normal; color: #000000; margin-bottom: 1em; text-align:justify; }
According to W3C, my CSS is valid and the document in question validates as XHTML 1.0 Strict, so I'm not sure what's causing the problem.
The problem does not occur in IE7, (or any other browser I've tested with) so is it just one of the problems endemic to IE6? I've googled for it and come up with nothing.
Although I hate that browser as much as any other developer, I still see plenty of people using it. Therefore, I have no choice but to develop for it.