Forum Moderators: not2easy
Is there something I'm missing here or is browser compatibility for CSS with SELECT element just not there yet?
What properties of CSS can you apply to the SELECT element?
Which browsers support it?
Any insight would be greatly appreciated!
IE lets you change the background colour, Opera and Mozilla will also change the text to you liking, Mozilla also supports borders!I generally stick to just the background and the font. Although, I do this sparingly for usability reasons.
I discovered that. Does Mozilla support border-style? Mmmm.. can't seem to get this style to apply then. The style should create a solid dark grayish border with a background of gray and making it look flat instead of 2D. Works fine on INPUT and TEXTAREA elements.
INPUT, SELECT, TEXTAREA { background-color: #EEEEEE; font-family: verdana; border: #778899 1px solid; font-size: 12px; color: #000000; padding-top: 1px; padding-bottom: 1px; padding-left: 3px; padding-right: 0px; overflow: auto; width: auto; }
Except for background-color and color, style settings applied through the style object for the option element are ignored. In addition, style settings applied directly to individual options override those applied to the containing SELECT element as a whole.
Unfortunately, I know of no equivalent reference for Mozilla or Opera.
Thanks for your guys input, still wish I could figure out more but thanks. I appreciated the replies.