我有一个HTML代码如下
<h2><a class="toc-backref" href="#id8">Debug</a></h2>
如何将css格式应用于<a>
内部的调试(位于<h2>
内)并使用“toc-backref”类?
答案 0 :(得分:7)
您可以在span
内加h2
,但这不是必需的。如果您想在<a>
内设置<h2>
样式,请执行以下操作:
h2 a {
// style here
}
或者你可以给链接一个类:
h2 a.toc-backref {
// style here
}
答案 1 :(得分:3)
h2 .toc-backref
{
/* Any style here */
}
答案 2 :(得分:2)
您也可以尝试
<h2 class="toc-backref"><a href="#id8">Debug</a></h2>
你的风格将在css
.toc-backref
{
//your style....
}