View Full Version : Linking CSS


Jared
11-29-2003, 09:52 PM
My css page is called css.css

This is My page for CSS:

A:link
{ text-decoration: underline; cursor:text; color:#FFFFFF; }
A:visited
{ text-decoration: underline; cursor:text; color:#FFFFFF; }
A:active
{ text-decoration: underline overline; cursor:text; color:#000000; }
A:hover
{ text-decoration: underline overline; cursor:text; color:#000000; }

cursor: crosshair;
background: #C8C8C8;

body
{
background: #C8C8C8;
font-family: value; Verdana
color: #000000 ;

cursor: crosshair;

scrollbar-face-color : #FFFFFF;
scrollbar-highlight-color : #FFFFFF;
scrollbar-3dlight-color : #000000;
scrollbar-shadow-color : #FFFFFF;
scrollbar-darkshadow-color : #C8C8C8;
scrollbar-track-color : ##C8C8C8;
scrollbar-arrow-color : #000000;

margin-top: 0;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
padding-top: 0;
padding-bottom: 0;
padding-left: 0;
padding-right: 0;
}

input, textarea
{ background: #GGGGGG;
font-family: Arial;
color: #000000;
border-style: dashed;
border-color: #G9G9G9;
border-width: 2; }

--------------------
Now, Here is the tag
<LINK href="http://www.hunkydori.com/css.css" rel="stylesheet" type="text/css">

Nothing is working.

COBOLdinosaur
11-29-2003, 11:07 PM
It does the a declarations and tehn ignores the rest because the stylesheet id broken.

A:hover
{ text-decoration: underline overline; cursor:text; color:#000000; }
next two lines are not in a declaration

cursor: crosshair;
background: #C8C8C8;

everything else gets ignored
body
{
background: #C8C8C8;
font-family: value; Verdana
color: #000000 ;

etc.