Jump to content

FireFox Select


DaNuGai

Recommended Posts

I have reset the margin and padding in my CSS for all pages.

* {margin: 0; padding: 0;}

So for the dropdownlist, I decided to set the height in the style but that doesn't seem to work in FireFox. Is there a way to not reset the dropdownlist for all pages? In other words, what css elements can I use to set the dropdownlist to the way it used to look?Thanks in advance.

Link to comment
Share on other sites

which height, of the initial dropdown before anything's selected? It might be based off of font size. Can we see the code you're using for the CSS and dropdown?

Link to comment
Share on other sites

as well as font-size, try also adjusting line height.<select class="whatever">.....</select>select.whatever {font-size:10px; line-height:12px; height:12px;}OR<div id="dropdown_container"><select >.....</select></div>#dropdown_container select {font-size:10px; line-height:12px; height:12px;}can be used to target specific select dropdown, if that is what we are talking about.

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...