@import样式在媒体查询中不起作用 [英] @import styles not working in a media query

查看:228
本文介绍了@import样式在媒体查询中不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图导入一个基于媒体查询的样式,但没有触发导入。如果我直接在媒体查询中将样式渲染到页面。

I am trying to import a style based off a media query but the import is not being triggered If i put styles directly in the media query they are rendered to the page.

以下是指向实际网站的连结 http://update.techbasics.ca

Here is a link to the live site http://update.techbasics.ca

这是我的style.css与媒体查询和导入

Here is my style.css with the media queries and the imports

我使用wordpress如果这有助于调试。

I am using wordpress if that helps debug.

@import url('base.css');
/******************************************************************
Site Name: Tech Basics
Author: Anders Kitson

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.
******************************************************************/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

/*****************************************************************
BASE CSS
*****************************************************************/

/*****************************************************************
MEDIA QUERIES
*****************************************************************/
@media only screen and (min-width: 480px) {
    @import url('min480.css');
  }
@media only screen and (min-width: 600px) {
     @import url('min600.css');
  }
 @media only screen and (min-width: 768px) {
  body {
    background: purple; } }
@media only screen and (min-width: 992px) {
  body {
    background: orange; } }
@media only screen and (min-width: 1382px) {
  body {
    background: url("../img/noisy_grid.png"); } }
/* iPhone 4 ----------- */
@media only screen and (-webkit-min-device-pixel-ratio : 1.5), only screen and (min-device-pixel-ratio : 1.5) {
  @import url('base.css'); 
}

这里是min600.css(位于与样式相同的目录中。 css file)

and here is min600.css (located in the same directory as the style.css file)

header {
  text-align: left; }
  body{
    background: green;
  }


推荐答案

/ p>

try that kind of code

@import url("/inc/Styles/full.css") (min-width: 940px);

这篇关于@import样式在媒体查询中不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆