събота, 9 март 2013 г.

CSS width: calc(100% -100px); Alternative using jQuery

Some browsers do not properly support the CSS specification. jQuery offers many alternative ways to solve these incompatibility problems. For example this CSS code:
.someStyle {
     width: calc(100% -100px);
}
The above could be achieved with jQuery:
$('#yourEl').css('width', '100%').css('width', '-=100px');

Няма коментари:

Публикуване на коментар