0

我已经使用 HTML 和 CSS 大约 5 年了,而我对这个完全不知所措。http://napletonlaw.connectionsquad.com/

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

我的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 会跨越整个页面宽度为 320 像素...

4

2 回答 2

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;
}
于 2012-10-23T17:11:00.377 回答
0

样式处出现 CSS 错误,缺少括号-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 1;

#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);
}
于 2012-10-23T17:12:54.683 回答