わかりません、とても単純なようです。.class を使用して「Hello」テキストにスパン スタイルを追加したい
http://www.mysecretathens.gr/kulte_test/index.html
この .greeting クラスが機能しないのはなぜですか? こうやって並べると60pixelしかない
<span style="font-size:60px;">
何か案は?
わかりません、とても単純なようです。.class を使用して「Hello」テキストにスパン スタイルを追加したい
http://www.mysecretathens.gr/kulte_test/index.html
この .greeting クラスが機能しないのはなぜですか? こうやって並べると60pixelしかない
<span style="font-size:60px;">
何か案は?
その上の 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;
}
問題は、#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;
}
中かっこの間にスペースを使用してください。
(韻を踏んだ)。
ああ、あなたのサイトの本当の問題は #container2 に終わりがないことです }.