5

わかりません、とても単純なようです。.class を使用して「Hello」テキストにスパン スタイルを追加したい

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

この .greeting クラスが機能しないのはなぜですか? こうやって並べると60pixelしかない

<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 に答える