样式<a> tags and other tags at the same time</a>

时间:2011-07-19 17:26:20

标签: css

我有一些css不是我写的,我试图了解如何正确编辑它。

在我的主页上http://www.comehike.com我有一系列的徒步旅行和小组。它们的标题包含在标签中,但由于它们具有标签样式,因此系统会忽略标签。

以下是这些景点的样式:

.content .chapter_text {
    margin-bottom: 0em; 
    padding: 0.5em;
    line-height: 1.4em;
}

.content .chapter_text li{
    list-style-image: url("http://www.comehike.com/img/ui/circle.png");
    margin-left:20px;
}
.content .chapter_text li a{
    color: #7e9940;
    text-decoration: none;
}
.content .chapter_text a:hover{
    color: #3f6b30;
}

为了使标签有效,我应该添加类似

的内容
.content .chapter_text h3 
{
What goes here????
}

谢谢!

2 个答案:

答案 0 :(得分:0)

是。你应该/可以添加它。这将找到h3.chapter_text作为父母的.content代码。

我认为自己尝试一下会得到更快的答案。

答案 1 :(得分:0)

您的reset-min.css似乎为所有标头设置了以下属性:

h1, h2, h3, h4, h5, h6 {
font-size: 100%;
font-weight:normal;
}

你想要做的就像@Phil借调时要明确地设定h3标签的样式,并将字体大小设置为120%或不同的东西(或绝对值),这应该可以解决问题。我只是在chrome的调试器中“在运行中”重置它,它似乎可以解决这个问题:)