无法让媒体查询工作

时间:2015-04-02 02:58:56

标签: css3 media-queries

我创建的网站主要是响应式的,但在较小的屏幕上查看时需要一些帮助。我试图将@media查询添加到css页面,但它似乎没有任何区别。

我只在主css页面中添加了不同的样式规则,并没有向我的html添加任何内容。我对媒体查询的工作原理感到困惑,所以也许这就是我的问题?

这是我的css

/*Alt styles for smaller screens*/
@media only screen and (max-width: 780px) {

     div.price-area1 {
          width: 100%;
          text-align: center;
     }

     div.price-area2 {
          width: 100%;
          text-align: center;
     }

     div.price-area3 {
          width: 100%;
     }

     input.submit {
          width: 60%;
          margin-left: 20%;
     }

     nav {
          width: 100%;
     }

     nav ul li {
          position: relative;
          float: left;
          width: 50%;
          font-family: 'Poiret One', cursive;
          margin-bottom: 15px;
          text-align: center;
          font-size: 24px;
     }
}

1 个答案:

答案 0 :(得分:0)

了解媒体查询的最简单方法是阅读herehere

话虽如此,您可能希望使用bootstrap这样的框架,这是启动网站的好方法。否则,您可以使用此模板进行媒体查询:

/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
  /* Styles */
}

/* Smartphones (landscape) ----------- */
@media only screen and (min-width : 321px) {
  /* Styles */
}

/* Smartphones (portrait) ----------- */
@media only screen and (max-width : 320px) {
  /* Styles */
}

/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
  /* Styles */
}

/* iPads (landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
  /* Styles */
}

/* iPads (portrait) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
  /* Styles */
}

/* Desktops and laptops ----------- */
@media only screen and (min-width : 1224px) {
  /* Styles */
}

/* Large screens ----------- */
@media only screen and (min-width : 1824px) {
  /* Styles */
}

/* iPhone 4 ----------- */
@media only screen and (-webkit-min-device-pixel-ratio:1.5), only screen and (min-device-pixel-ratio:1.5) {
  /* Styles */
}

如果你想自己做这件事,这是一个很好的起点。