Sto tentando di importare uno stile basato su una query multimediale ma l'importazione non viene attivata Se inserisco gli stili direttamente nella query multimediale, vengono sottoposti a rendering nella pagina.Gli stili di importazione non funzionano in una query multimediale
Questo è il link al sito live http://update.techbasics.ca
Ecco la mia style.css con le media query e le importazioni
sto usando wordpress se questo aiuta il 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');
}
e qui è min600.css (che si trova nella stessa directory del file style.css)
header {
text-align: left; }
body{
background: green;
}
sue non le dichiarazioni della media query quello non è di lavoro So che stanno lavorando le sue regole in thats di file min600.css importati non wirking il titolo di techbasics dovrebbe spostarsi a sinistra quando è a minwidth 600px ma non lo fa. –
Si noti anche come lo stile importato nella query media minwidth 600px non cambi in verde. Questo è il mio problema. –