我是CSS和WP的新手。我尝试使用“ all:initial”没有成功。
我有这段HTML和WP php代码行:
<h1><a href="<?php the_permalink();?>"><?php the_title();?></a></h1>
当我在浏览器中查看并将光标移到链接上时,将光标更改为手形指针,并且文本/字体的颜色从黑色变为白色,以匹配背景色(白色)
我删除了锚点
<h1><?php the_title();?></h1>
它并没有这样做,所以我知道锚点是元凶
但是,如果我将一个类添加到锚点并将其所有值设置为initial,则它无法解决当前问题,而是将我的h1元素更改为更小/更标准的
<h1><a class="blog-anchor" href="<?php the_permalink();?>"><?php the_title();?></a></h1>
这是我的课:
.blog-anchor {
all: initial;
}
.blog-anchor:active,
.blog-anchor:hover {
all:initial;
}
无论如何,我要做的就是拥有一个WP标题,该链接的链接无需任何先前的样式即可工作
<h1 ><a href="<?php the_permalink();?>"><?php the_title();?></a></h1>
我该怎么做?