In the chrome developer tools here,
You can double click and edit these properties,
After editing, if I want my chrome extension to change 'padding-left' to 16px I use this line:
$('.tsf-p').css('padding-left', '16px');
What code would I use 开发者_StackOverflow中文版to change the position field to inherit?
$('.tsf-p').css({ 'padding-left': '16px', 'position': 'inherit' });
should do it.
精彩评论