我不明白,看起来很简单。我想添加一个span样式 带有.class
的“Hello”文本http://www.mysecretathens.gr/kulte_test/index.html
为什么这个.greeting班不起作用?当我这样说时,它只能成为60像素
<span style="font-size:60px;">
有什么想法吗?
答案 0 :(得分: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;
}
答案 1 :(得分: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;
}
答案 2 :(得分:0)
在花括号之间使用空格!
(它押韵)。
哦,您网站的真正问题是#container2缺少关闭}。