当我使用媒体代码时,它会使我的网站崩溃

时间:2018-09-20 02:49:58

标签: css media-queries

此代码似乎是正确的,但是当我将其添加到CSS时,该网站崩溃了。我做错了什么?

使用的代码:

@media only screen and (max-width: 767px) {
  .sesusercoverphoto_cover_change_cover {
    position: absolute;
    left: 20px;
    top: 20px !Important;
    z-index: 2;
  }

1 个答案:

答案 0 :(得分:0)

您缺少第二个右括号。

@media only screen and (max-width: 767px) {
  .sesusercoverphoto_cover_change_cover {
    position: absolute;
    left: 20px;
    top: 20px !Important;
    z-index: 2;
  }
}