display property of input elements

FF thinks input elements are inline elements while other browsers think they are inline-block elements.

by davidtong

HTML

<input type="textarea"/>
<div class="result"></div>

CSS

.result {background-color: yellow;}

JavaScript

$('.result').html('Display: ' + $('input').css('display'));