im having a problem with max-width and max-height. lets say i have the following css rule:
img.item { max-width: 325px; max-height: 390px; }
and the following img in my document:
<img class="item" src="http://us.dorothyperkins.com/wcsstore/DorothyPerkinsUS/images/catalog/80000095_normal.jpg">
original image width x height is: 342 x 464
if i try and get with jquery the values for max-width and max-height i get them wrong.
$('img.item').css('max-width');
// returns 357px
$('img.item').css('max-height');
// returns 429px
any ideas on why is this? or how i can get the correct sizes?
if i use $('img.item').width() and $('img.item').height() i get the calculated values, not good for me.
thanks.