当我检查网页时,遇到一个section元素
section#sp-bottom
在样式控制台中,我看到
#sp-bottom (
margin: 10px 0px 0px 0px;
}
当我将上述10px
更改为0px
时,我可以看到10px
的页边距消失。
然后在我的custom.css
模板中,我添加了
#sp-bottom {
margin: 0px 0px 0px 0px;
}
但是在清除缓存页面后&浏览历史记录,我仍然会显示10px
有些人请教。
答案 0 :(得分:0)
通过将标记名称(section
)添加到css选择器
section#sp-bottom {
margin: 0;
}
答案 1 :(得分:0)
你可以试试这个。
section#sp-bottom{ margin:0px;}
答案 2 :(得分:0)
您可能希望看到此question。
我觉得你试图通过浏览器编辑你的CSS。内容在内存中,因此当您清除它重置的缓存时。
答案 3 :(得分:0)
试试这个
#sp-bottom {
margin:0px !important;
}