This is part of The Pile, a partial archive of some open source mailing lists and newsgroups.
Subject: Re: [OT] Style sheets
From: Vidiot <brown@mrvideo.vidiot.com>
Date: Fri, 15 Sep 2000 09:26:12 -0500 (CDT)
You are also missing comments around your stylesheet so that the browsers
to not get confused. It is a simple rule, written up in all the books:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<HTML>
<HEAD>
<TITLE>N=D3MINA</TITLE>
<STYLE TYPE="text/css" MEDIA="print" TITLE="Titulo">
<!-- Need comment markers to keep browers from attempting to format the tags
BODY {
color: black;
background: white
}
P {
font-family: serif;
font-size: 8pt
}
H1 H2 H3 H4 H5 H6
{
font-weight: bold
}
H1
{
font-size: 14pt
}
H2
{
font-size: 12pt
}
H3
{
font-size: 10pt
}
TH
{
text-align: center; font-weight: bold
}
@page
{
size: landscape
}
-->
</STYLE>
</HEAD>
Now try running it through the parser checker.
===