2014-12-19 45 views
1

這裏是我的@media查詢代碼:引導殺死我的媒體查詢代碼

@media (max-width:1200px) { 
    html { background-color: red; } 
} 

此代碼的工作,但直到我添加了引導CSS。

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css"> 
<!-- Latest compiled and minified JavaScript --> 
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script> 

當我添加bootstrap時,我的@media查詢停止工作。

+2

在什麼樣的順序,你宣佈你的風格VS引導CSS?如果你的樣式是首先聲明的,bootstrap可能會覆蓋它們(如果引導程序設置了'html {background-color:/ * some other color * /;}' – JRulle

回答

5

引導套(相當於):

body { 
    background-color: white; 
} 

所以,你可能只需要改變你的選擇,以body沒有任何問題:

@media (max-width:1200px) { 
    body { 
     background-color: red; 
    } 
}