如何在h2中为一个类应用css?

时间:2011-03-04 19:41:12

标签: html css

我有一个HTML代码如下

<h2><a class="toc-backref" href="#id8">Debug</a></h2>

如何将css格式应用于<a>内部的调试(位于<h2>内)并使用“toc-backref”类?

3 个答案:

答案 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....

}