开发者

How to implement temporary edits

开发者 https://www.devze.com 2023-02-03 07:59 出处:网络
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:

In the chrome developer tools here,

How to implement temporary edits

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消