![css](https://habrastorage.org/r/w120/webt/5a/6c/29/5a6c295a5de0d066850531.png)
CSS
0
Вклад в тег
if ( $.browser.mozilla ) {
$('div').each(function() {
var webkitlh = $(this).css('line-height');
if (webkitlh != 'normal') {
var mozhlroz = Math.floor(parseInt(webkitlh.replace('px','')) - 1)+'px';
$(this).css({'line-height' : mozhlroz});
};
});};