在现场时,样式不适用于移动设备

时间:2015-10-18 08:38:54

标签: html css css3 media-queries

我只是想制作一个简单的目标网页。当我在本地查看它时,一切看起来都很好,但是当我在移动设备上看到它时,背景重复,并且没有应用任何媒体查询样式。

这是我的CSS:

@import url(https://fonts.googleapis.com/css?family=Montserrat);

html {
  background-image: url("BKGND.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

a {
  text-decoration: none;
}

p {
  color: #6A6D75;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  margin: 3% auto;
  text-align: center;
}

button {
  background-color: transparent;
  border: 2px solid #73C23F;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  display: block;
  font-family: 'Montserrat', sans-serif;
  line-height: 0.3rem;
  margin: 5% auto 0;
  padding: 2%;
  font-size: 0.75rem;
  width: 15%;
  height: 2.5rem;
}

#logo {
  display: block;
  margin: auto;
  width: 20%;
}

.element {
  position: relative;
  top: 50%;
  transform: translateY(50%);
  -ms-transform: translateY(50%);
  -webkit-transform: translateY(50%);
}

@media (max-width: 900px) {
  button {
    width: 30%;
  }

  #logo {
    width: 30%;
  }
}

@media (max-width: 600px) {
  button {
    width: 50%;
  }

  #logo {
    width: 50%;
  }
}

这是网站:passporte.net

1 个答案:

答案 0 :(得分:1)

<head>标记中添加

<meta name="viewport" content="width=device-width, initial-scale=1">

并在您的媒体查询中,将其设为那样

@media only screen and (max-width : 900px)