生气...不能设置字体颜色

时间:2011-02-19 13:01:33

标签: html css colors

<!doctype html public "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">

<html>

<head>
    <link rel="stylesheet" href="css/default.css" type="text/css" /> 
</head>

<body>

<div class="topBar">

</div>

<div class="mainBox">
    erg
</div>

<div class="footer">

    <h3>Community</h3>

</div>
<div class="copyright">
    Copyright &copy; 2011 Scirra.com.  All rights reserved.
</div>

</body>

</html>

使用css:

body{
    margin: 0px;
    padding: 0px;
    font-family: Arial, Helvetica, Verdana;
    background-image: url(../images/background.png);
    background-repeat: repeat-x;
}

.topBar{
    position:absolute;
    background-color: #339900;
    height: 30px;
    border-bottom:2px solid #3FBF00;
    width: 100%;
    z-index:1;
}

.mainBox{
    margin: 0 auto;
    width: 740px;
    border-left: 1px solid #c0c0c0;
    border-right:1px solid #c0c0c0;
    border-bottom: 1px solid #c0c0c0;
    z-index:2;
    position:relative;
    background-color: #ffffff;
    height:400px;
    -moz-border-radius-bottomright: 10px;
    border-bottom-right-radius:  10px;
    -moz-border-radius-bottomleft: 10px;
    border-bottom-left-radius:  10px;
}

.footer{
    position:relative;
    z-index:1;
    top: -15px;
    height:155px;
    padding-top: 15px;
    background-image: url(../images/background-footer.png);
    background-repeat:repeat-x;
    margin-bottom: -15px;
}
.copyright
{
    color: white;
    text-align:center;
    background-color: #000000;
    font-size: 12px;
    padding: 3px;
}
.h3{
    font-size: 16px;
    color: white;
    text-shadow: 0.1em 0.1em 0.2em black;
}

我无法将字体颜色设置为白色大声笑,严重的是我做错了!

4 个答案:

答案 0 :(得分:6)

删除.h3前面的点。它应该是h3,因为它引用了一个元素,而不是一个类。

答案 1 :(得分:4)

你的h3的CSS不应该有一个点(它不是一个类)。

应该是:

h3 {
  font-size: 16px;
  color: white;
  text-shadow: 0.1em 0.1em 0.2em black;
}

答案 2 :(得分:3)

有一个错字。只需用.h3(元素选择器)替换h3(类选择器)。

答案 3 :(得分:3)

从样式表中删除.中的.h3