此代码似乎是正确的,但是当我将其添加到CSS时,该网站崩溃了。我做错了什么?
使用的代码:
@media only screen and (max-width: 767px) {
.sesusercoverphoto_cover_change_cover {
position: absolute;
left: 20px;
top: 20px !Important;
z-index: 2;
}
答案 0 :(得分:0)
您缺少第二个右括号。
@media only screen and (max-width: 767px) {
.sesusercoverphoto_cover_change_cover {
position: absolute;
left: 20px;
top: 20px !Important;
z-index: 2;
}
}