CSS样式不起作用?

时间:2012-10-23 17:06:36

标签: html css

我已经使用HTML和CSS大约5年了,我完全失去了这个。 http://napletonlaw.connectionsquad.com/

在该页面上,该容器中有一个div,其ID为Clarity。

我的CSS规则如下:

#clarity {
text-align: center;
width: 320px;
}

它的代码如下:

<div id="clarity">
            <img src="Resources/magnifying-glass.png" />
            <p>You have questions, and we have answers.  We can help break down the situation into easy-to-understand terms and clear advice. Napleton Law is here to help you!</p>
        </div>

由于某种原因我应用于该DIV的宽度没有...在Dreamweaver的预览中它将div缩小到320px,但是在预览时它没有...我不知道为什么清晰度div跨越整个页面当我设置宽度为320px ...

2 个答案:

答案 0 :(得分:6)

上一条规则中有一个缺少的括号,可能是导致问题的原因。

#container {
    width: 960px;
    height: 800px;
    margin: 0px;
    position: relative;
    z-index: 100;
    background-color: #a0a0a0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 1);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 1; <--- Missing bracket
    -moz-box-shadow: 0 0 10px rgba(0,0,0,1);
}
#clarity {
    text-align: center;
    width: 320px;
}

答案 1 :(得分:0)

样式-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 1;

时出现CSS错误,缺少括号
#container {
    width: 960px;
    height: 800px;
    margin: 0px;
    position: relative;
    z-index: 100;
    background-color: #a0a0a0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 1);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 1);  //Added a missing bracket here.
    -moz-box-shadow: 0 0 10px rgba(0,0,0,1);
}