I want to check the correct fill value of a div element. I am using jquery .css () method:
$('div').css('padding-right');
It works. Now I need to know where it came from. This can be with the built-in defenition:
<div style="padding-right: 100px;">
or it can be written in an external css file (or <style></style> ):
div { padding-right: 100px; }
Thanks!
source share