Closed. This question is off-topic。它当前不接受答案。












想要改善这个问题吗? Update the question,所以它是用于堆栈溢出的on-topic

已关闭8年。



Improve this question




Adblock隐藏了http://www.outlook.com上的广告,但留下了一个空白的边栏,我想将其删除
我发现有2种方法可以手动删除侧边栏,但我想使用adblock plus

方法1:
边栏div设置为:
<div id="contentRight" class="ContentRight WithSkyscraper">

通过从类中删除WithSkyscraper,侧边栏将被隐藏。

方法2:
另一种方法是在css文件中有一个类:
.App.Unmanaged .ContentRight.WithSkyscraper #ManagedContentWrapper
{
padding-right:160px;
}

通过删除padding-right或将160px更改为0px,边栏也会隐藏

是否可以使用adblock plus来执行这两种方法之一?还是有另一个可以使用的插件

谢谢你的帮助

最佳答案

我在Firefox上安装了时尚插件,并创建了自己的样式以将宽度更改为0px

.App.Unmanaged .ContentRight.WithSkyscraper #ManagedContentWrapper
{
padding-right: 0px !important;
}

关于html - Adblock Plus-隐藏部分CSS样式或更改类名称?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11814944/

10-12 22:13