Mobile app version of vmapp.org
Login or Join
Phylliss660

: CSS color marked as invalid by code inspector On this page, there is a "read more..." link towards the end of the page, enclosed in <span id="s-hpi"></span> There is CSS: #s-hpi {

@Phylliss660

Posted in: #Css

On this page, there is a "read more..." link towards the end of the page, enclosed in <span id="s-hpi"></span>

There is CSS:
#s -hpi {
color: 0000FF;
cursor: hand;
}


but Chrome code inspector says both these rules are invalid.

Why?

Thanks.

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Phylliss660

2 Comments

Sorted by latest first Latest Oldest Best

 

@Heady270

As mention above You're missing the # before the hex color. for cursor you can use pointer
#s -hpi {
color: #0000FF ;
cursor: pointer;
}

10% popularity Vote Up Vote Down


 

@Kevin317

You're missing the # before the hex color:

color: 0000FF;


should be:

color: #0000FF ;

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme