css Tampermonkey -替换div max-height

qgelzfjb  于 2023-05-02  发布在  其他
关注(0)|答案(1)|浏览(139)

有了Tampermonkey,我就可以把类content-inner的max-height(可变)替换为固定的4000 px。
示例页:

<div class="content-inner" style="max-height: 1228px;">
<div class="content-inner" style="max-height: 1568px;">

应替换为:

<div class="content-inner" style="max-height: 4000px;">
fnx2tebb

fnx2tebb1#

感谢vdegenne:

var divs =document.getElementsByClassName("content-inner");
divs=Array.from(divs);
divs.forEach(function(div){
  div.style.maxHeight = '4000px';
 });

相关问题