What Does This Error Mean?

Discussion in 'CSS' started by gobbly2100, Aug 17, 2007.

  1. #1
    I am trying my best to make sure this site validates but in the CSS validator I am getting this:

    Parse Error - : #cccccc; text-decoration: none; } a:visited

    Here is a link to the error page on the validator

    CSS Validator
     
    gobbly2100, Aug 17, 2007 IP
  2. Stomme poes

    Stomme poes Peon

    Messages:
    3,195
    Likes Received:
    136
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Woo, an easy one for me!

    p {
    	font-family: Tahoma, Geneva, sans-serif;
    	font-size: 14px;
    	color: #fff;
    	text-align:justify;
    }
    <------------------------ no opening bracket or name of element
    	color: #cccccc;
    	text-decoration: none;
    }
    a:link {
    	color: #cccccc;
    }
    
    a:visited  {
    	text-decoration: none;
    	color: #cccccc;
    }
    
    Code (markup):
    Can't parse = something missing from code like opening tags or closing tags or semi-colons after values etc. : )
     
    Stomme poes, Aug 17, 2007 IP
  3. deathshadow

    deathshadow Acclaimed Member

    Messages:
    9,732
    Likes Received:
    1,999
    Best Answers:
    253
    Trophy Points:
    515
    #3
    Which given it's placement and the values I'd assume there should be a

    a {

    there.
     
    deathshadow, Aug 17, 2007 IP