<div class="a"></div>
.a{
padding:10px;
background:red;
}
it's easy to get above element's background value, just use $('.a').css('background');
but now I have this div :
<div style="padding:0;background:red"></div>
How can I get the background property?