0

Can someone tell me what might cause Firefox to render the selected item in a select list off center vertically?

enter image description here

This is happening in CRM using Jquery Steps and Validation. Not sure if that is a potential source of the issue/css conflict or not.

Select list displays normally in Safari and Chrome.

I am setting the width of the select list in jquery

$("#state").css("width", "180px");

No other styling is being intentionally applied to it.

Mike Volmar
  • 1,927
  • 1
  • 22
  • 31
  • 1
    By doing this I was able to work around the issue. https://stackoverflow.com/questions/3476314/css-overwrite-height-of-all-select-dropdowns – Mike Volmar Jun 01 '17 at 21:30

1 Answers1

0

It's probably because there is not enough room. Those drop-down boxesneed a little bit extra room to fit the text in. It's an easy fix really, just add a bit more height to the css.

Diriector_Doc
  • 582
  • 1
  • 12
  • 28