我就是想全站把:before
给去掉,现在是这样的:
.entry .entry-title:before { display: none; } .comments-area .comments-title-wrap .comments-title:before { display: none; } .post-navigation .nav-links .nav-next .meta-nav:after { display: none; } .post-navigation .nav-links .nav-previous .meta-nav:before { display: none; }这样太啰嗦了,能不能一句就把全站的
:before
去掉呢?
1
gy134340 2019-08-25 20:12:55 +08:00
* :before {
display: none !important; } 这样行吗 |
2
sunjourney 2019-08-25 20:45:54 +08:00
*::before {
content: none; } |
3
sunjourney 2019-08-25 20:46:26 +08:00
加个 !important 提高权重
|
4
crazybinggan 2019-08-25 21:22:05 +08:00
还是乖乖这样写,如果像楼上那种全局的搞法,需要加 `!important`,然后你后面的接手有需要用到的,就懵逼了,要解决就继续用 `!important` 覆盖前面的,一发不可收拾,后果知道猜的到吧...
|
5
weiruanniubi OP |
6
weiruanniubi OP @crazybinggan 没事,是我自己的博客……
|