glenelkins Posted March 12, 2010 Share Posted March 12, 2010 In case you are wondering, I cam across something rather strange when changing the height of a select box with css. According to just about everyone to make this possible cross browser, you need to use JavaScript, as Safari will not allow the height to be styled. Wrong!!! U cam across a couple of things. First of there is the -khtml-appearance:none - though this only works in Safari at the moment. But the strange thing I stumbled across is that firefox will change the height of the select box quite simply with: height:50px; for example. But it will remain the standard height in safari. If you actually change the background colour from anything other than pure white, then safari will actually scale the box height: select { height: 50px; background:#fefefe; } The above code works nicely, even though its very strange that the background colour can affect the height of the box. Try it with no "background" or setting the background to #ffffff; You will see what I mean! Quote Link to comment Share on other sites More sharing options...
vinpkl Posted March 13, 2010 Share Posted March 13, 2010 what about IE7 ? I tested it and doesnt works in IE7 vineet Quote Link to comment Share on other sites More sharing options...
glenelkins Posted March 13, 2010 Author Share Posted March 13, 2010 ah your right. i didnt test in IE as im on a mac. I will see if there is a way around this! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.