Jump to content

whatever:hover


s_ff_da_b_ff

Recommended Posts

is it true that I need whatever:hover inorder to get my vertical CSS pop out menu to work (without using JS)? And if so where can I get my hands on it I can not seem to find it anywhere on the net.

 

And if you have any other suggestions other that whatever:hover please tell. Thanks

Link to comment
Share on other sites

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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.