Jump to content

whatever:hover


s_ff_da_b_ff

Recommended Posts

Yes, you can have as many as you want.

 

One thing to keep in mind is that with CSS, if you declare something twice, the one that comes last will be the one that matters.

 

For example if you have

 

a.link
{
   color: red;
}

 

and somewhere else you have

 

a.link
{
   color: blue;
}

 

Whichever comes last will be the color of the links. So if you have both those declarations in the same document, and the blue one is second, then the links will be blue. If they are in separate documents, then whichever document comes second will be the one that matters. So if you have doc1.css and doc2.css, and the red links are in doc1.css, and the blue links are in doc2.css, and in the head of your document doc2.css comes after doc1.css, the links will be blue.

Link to comment
https://forums.phpfreaks.com/topic/114569-whateverhover/#findComment-589702
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.