Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Checkout http://demo.neeraj.name/admin_data in both chrome and firefox. In firefox the select box has large height. In chrome the height of select box is very small.

How do I make the select box of chrome and safari look like the select drop down of firefox?

share|improve this question
1  
Please consider changing the correct answer as the one with the highest votes is far more practical. – willdanceforfun Apr 13 at 12:07

8 Answers

up vote 1 down vote accepted

try jqTranform. you'll have more control over the form elements.

share|improve this answer

I've run into this problem before

Setting the height of the select element works fine on webkit in Windows, but fails on webkit on a Mac.

If you set the css attribute

-webkit-appearance: menulist-button;

It will allow the height to work properly on a Mac, but it creates this weird black border on windows. You can adjust the border by setting the css border property, but that changes the look on all browsers that let you style select borders, not just webkit.

At this point, i gave up, but hopefully that is a good starting point if you want to investigate future.

share|improve this answer
7  
This should be the right answer. – pixelfreak Aug 22 '11 at 21:06
works perfectly for me. – brunomacaco Oct 11 '11 at 1:34
Perfect. Thank you! – rmarscher Mar 16 '12 at 22:36
works! thank you! – madsleejensen Oct 18 '12 at 10:29
Worked great, thanks! Oh, and to set this just for Chrome, use the following media query to wrap the statement: @media screen and (-webkit-min-device-pixel-ratio:0) { select { -webkit-appearance: menulist-button; } } – daveaspinall Apr 17 at 16:17
show 1 more comment

Increase the line-height

share|improve this answer

height will not work on Safari unless you also have a background set. If you set a background you may lose the drop down arrows in the windows version of Safari. Again form styling seems to be wrought with issues.

share|improve this answer
3  
Setting 'background: none' seems sufficient to make Chrome and Safari respect the height property for select boxes on OSX. Still seems like a hack though. The jQuery combobox solution is probably better long-term. – antonm Dec 1 '12 at 19:25
@antonm: I'm not sure how well jQuery combobox works on mobile. – cdmckay Jan 28 at 14:32
@antonm doesn't most of CSS seem like a hack? :) I've accepted the feeling that I'm doing something the wrong way when I'm writing CSS – corbin Apr 25 at 19:34

I used jQuery combobox for this.

With this, you can set the height of the necessary CSS classes to the height you need your select box to be.

share|improve this answer

Sample page works Google Chrome 4 and Safari 4

share|improve this answer
Works as in looks the same as in Firefox? Not for me. – crimson_penguin Apr 1 '10 at 6:05
Google Chrome - twitpic.com/1cc62p Safari - twitpic.com/1cc664 – Fatih Hayrioğlu Apr 1 '10 at 6:57

Simply set the height property. line-height worked in Safari on Windows, but not on Mac. height worked on both.

share|improve this answer
I have the same problem and the Chrome on Mac just doen't want to change it – Teddy Mar 17 '12 at 9:21

You can increase the font-size to help with the height as well. I think that Safari mac show up to 16px font-size. At least gets a larger click region.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.