I want to check right padding value of div element. I use jquery .css() method:
$('div').css('padding-right');
It works. Now I need to know where it value comes from. It can by inline defenition:
<div style="padding-right: 100px;">
or it can be wrote in external css file (or <style></style>
section):
div {
padding-right: 100px;
}
Thanks!