On my Mac with web browsers (Safari and Chrome, current version) I cannot set the height of the input element.
<input type="button" style="height:200px;" value="Hello World!">β
will not work.
jQuerys $('input').css('height','200px');β will not work either.
http://jsfiddle.net/XmS6m/
Although setting the width is possible, either with an attribute style, or using jQuery.
What is the reason for this inconsistency? And what is a possible solution?
source share