Styling Select Option:hover problem in css

Status
Not open for further replies.

Palooo 2009

Active Member
572
2009
10
0
Hello,

I am trying to style select option in css. I got it working using

Code:
select option
{
}

but when i hover any option, it doesn't show any style:

I am trying to style it with
Code:
select option:hover
{
}

I don't know what is causing this not to work...
 
8 comments
example:

PHP:
<div class="myNavBar">
   <div class="menuItem">Item1</div>
   <div class="menuItem">Item2</div>
   <div class="menuItem">Item3</div>
   <div class="menuItem">Item4</div>
</div>

The CSS would be:
PHP:
myNavBar menuItem {background: #fff;}
myNavBar menuItem:hover {background: #c0c0c0;}
 
Status
Not open for further replies.
Back
Top