@media screen and (min-width: 360px) and (max-width: 375px){
.ejiao_description .form form p{
margin-bottom: 11px;
}
}
La requête média en CSS s'écrit comme ceci
js
var screen1 = window.matchMedia('@media (min-width: 360px) and (max-width: 375px)');
if (screen1.matches){
XXXXXX.....
}
else{
XXXX....
}
Mais ça ne marche pas maintenant.
Veuillez consulter la documentation
pour
window.matchMedia('(min-width: 360px) and (max-width: 375px)');
,没@media