diff options
author | link <link@localhost> | 2001-08-28 00:35:56 +0000 |
---|---|---|
committer | link <link@localhost> | 2001-08-28 00:35:56 +0000 |
commit | 5421d8c67d57f355ffd213200344853dbbcdb12b (patch) | |
tree | d65afae387c97115d06f8c95781a8614683e9970 /htdocs | |
parent | 272f2ff5b649486479e5b54d46e2edf08848fee0 (diff) | |
download | markup-validator-5421d8c67d57f355ffd213200344853dbbcdb12b.zip markup-validator-5421d8c67d57f355ffd213200344853dbbcdb12b.tar.gz markup-validator-5421d8c67d57f355ffd213200344853dbbcdb12b.tar.bz2 |
More tweaks to CSS and HTML to work around browser bugs.
Looks like it now works in all tested browsers, including:
* Netscape 4.x (Linux)
* Netscape 6.x (Linux, Mac)
* Mozilla 0.9.x (Linux, Mac)
* MSIE 5.x (Win, Mac)
* iCab (Mac)
Diffstat (limited to 'htdocs')
-rw-r--r-- | htdocs/base.css | 10 | ||||
-rwxr-xr-x | htdocs/index.html | 8 | ||||
-rw-r--r-- | htdocs/non-netscape.css | 12 |
3 files changed, 23 insertions, 7 deletions
diff --git a/htdocs/base.css b/htdocs/base.css index 4213528..f939fa2 100644 --- a/htdocs/base.css +++ b/htdocs/base.css @@ -4,9 +4,11 @@ Copyright © 2000 W3C (MIT, INRIA, Keio). All Rights Reserved. See http://www.w3.org/Consortium/Legal/ipr-notice.html#Copyright - $Id: base.css,v 1.10 2001-07-28 22:32:31 link Exp $ + $Id: base.css,v 1.11 2001-08-28 00:35:56 link Exp $ */ +@import url(non-netscape.css); + body { color: black; background: white; @@ -59,10 +61,6 @@ address { } p.navbar a {text-decoration: none} -p.navbar { - float: right; - text-align: right; -} table th { text-align: right; @@ -150,4 +148,4 @@ h6 { text-transform: none; } -)
\ No newline at end of file + diff --git a/htdocs/index.html b/htdocs/index.html index b2246d2..c68a405 100755 --- a/htdocs/index.html +++ b/htdocs/index.html @@ -34,6 +34,12 @@ documents like HTML and XHTML for conformance to W3C Recommendations and other standards. </p> + <div class="nsnote"> + <h2>Why does this page look so funny?</H2> + <p>Because you're using a UA that has buggy support for CSS + (*cough*Netscape*cough*). Get one that does, they are available + for all platforms for free, and you'll be much much happier.</P> + </div> <div> <h2>Recent Updates</h2> @@ -146,7 +152,7 @@ src="http://validator.w3.org/images/vxhtml10" height="31" width="88" alt="Valid XHTML 1.0!" /></a> <a href="/feedback.html">Gerald Oskoboiny</a><br /> - $Date: 2001-08-25 09:10:02 $ + $Date: 2001-08-28 00:35:56 $ </address> </body> </html> diff --git a/htdocs/non-netscape.css b/htdocs/non-netscape.css new file mode 100644 index 0000000..87aa48b --- /dev/null +++ b/htdocs/non-netscape.css @@ -0,0 +1,12 @@ +/* + non-netscape.css - CSS that is hidden from NS 4.x + $Id: non-netscape.css,v 1.1 2001-08-28 00:35:56 link Exp $ +*/ +p.navbar { + float: right; + text-align: right; +} + +.nsnote { + display: none; +} |