5

我不明白,这似乎很简单。我想用 .class 向“Hello”文本添加跨度样式

http://www.mysecretathens.gr/kulte_test/index.html

为什么这个 .greeting 类不起作用?当我这样放时它才变成60像素

<span style="font-size:60px;">

有任何想法吗?

4

3 回答 3

4

你还没有关闭它上面的 CSS 类。在前面放一个花括号:

::selection{

像这样:

#container2 {
    background-color: #ebebeb;
    height: 400px;
    background-image: url("white_arrow.png");
    background-repeat: no-repeat;
    background-position: 50% -28px;
    margin: 0 auto;
    padding-top: 80px;
    text-align: center;
    color: #636161;
    font-family:'Open Sans', sans-serif;
    font-size: 20px;
    line-height: 30px;
}
::selection {
    color: #fff;
    color: rgba(255, 255, 255, .85);
    text-shadow: none;
    background: #da0225;
}
于 2013-01-31T22:17:22.010 回答
2

问题是您没有关闭 #container2 css 规则。

#container2 {
background-color: #ebebeb;
height: 400px;
background-image: url("white_arrow.png");
background-repeat: no-repeat;
background-position: 50% -28px;
margin: 0 auto;
padding-top: 80px;
text-align: center;
color: #636161;
font-family: 'Open Sans', sans-serif;
font-size: 20px;
line-height: 30px;
}
于 2013-01-31T22:17:31.240 回答
0

在花括号之间使用空格!

(押韵)。

哦,您网站的真正问题是#container2 缺少结束符}。

于 2013-01-31T22:15:15.797 回答