Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Why does this CSS not work???

Status
Not open for further replies.

bardley

Programmer
May 8, 2001
121
US
the text colors change like you would expect, but it's all on a white background in both IE and Opera. It seems that my background: blue is being ignored. Any ideas?

the css:
Code:
<style type=&quot;text/css&quot;><!--

body {
        background: blue;
}


h2 {
        font-family: Arial, Helvetica, sans-serif;
        color: rgb(0,51,144);
}

th {
        font-size: 8pt;
        color: rgb(200,200,0);
}

td {
        font-size: 6pt;
        color: maroon;
}

--></style>

and the html:
Code:
<html>
<head>
<title>Test of Styles</title>
<link rel=&quot;stylesheet&quot; href=&quot;css/sample.css&quot; type=&quot;text/css&quot;>
</head>

<body>
<h2>This is a stylish sample</h2>
<table width=&quot;300&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;>
<tr>
<th width=&quot;300&quot; height=&quot;100&quot; align=&quot;center&quot; valign=&quot;center&quot;>This is a header</th>
</tr>
<tr>
<td height=&quot;100&quot; align=&quot;center&quot; valign=&quot;center&quot;>This is data</td>
</tr>
</table>
</body>
</html>
Brad Gunsalus
Cymtec Systems, Inc.
bgunsalus@cymtec.com
 
Well, it worked for me anyway (IE6) but you could try background-color:blue; instead.
 
One other suggestion - you're td style calls for a 6pt font. That's R-E-A-L-L-Y small font - almost unreadable at 800x600 resolution with a 10pt default text setting. I bet it would disappear on a 1024x768 screen resolution. For overall readability, stay at 8pt or higher - unless you're promoting an eye care site! There's always a better way...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top