SitePoint Member
Drop Down Menus
Is it possible to use CSS to specify the colour and style of a drop down menu box. I can do this with my input buttons, but I can't seem to figure it out for menus.
Here is what I have, I would like it to match the style of the input button below. Is it possible?
SELECT {
color : Navy;
font-family : Arial;
font-size : 11px;
font-weight : bold;
background-color : #FFF4AA;
}
MENU {
color : Navy;
font-family : Arial;
font-size : 11px;
font-weight : bold;
background-color : #FFF4AA;
}
INPUT {
background-color : #FFF4AA;
font-family : Arial;
font-size : 12 px;
font-weight : bold;
border : 1px solid Navy;
color : Navy;
.menu {
color : Navy;
font-family : Arial;
font-size : 11px;
font-weight : bold;
background-color : #FFF4AA;
}
<select>
<option class="menu"> Content </option>
</select>
Try that, it should work
If you mean the little down arrow on the drop-down menu (and the grey button behind it), then no.
Posting Permissions
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
Forum Rules
Bookmarks