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});
};
});};