我怎样才能摆脱文字的大胆设置?

时间:2014-05-28 20:26:13

标签: css text formatting

我有h1 h2和a用于文本格式化。

实际上...... h2和a是相同的,但我想将a更改为非粗体文本。

我该怎么做?

这是我到目前为止所写的内容:http://jsbin.com/tifuhute/44/

1 个答案:

答案 0 :(得分:2)

设置font-weight: normal; 到你的css班:

#text h2 {
    color: #151515;
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
    font-size: 14px;
    padding-left: 15px;
    padding-right: 15px;
    font-weight: normal;
}