use*_*779 1 html css media-queries
我已经为chrome和mozilla编写了媒体查询css.它在chrome中运行良好.但在mozilla中无效
@media screen and (min-height:650px)
{
#customerspeak .flexslider .slides .customerBackground img {
height: 100vh;
}
#customerspeak .flex-direction-nav a {
margin-top: 37%;
}
#customerspeak .flex-next {
left: 62.5% !important;
}
#customerspeak .flex-prev {
left: 34% !important;
}
@-moz-document url-prefix() {
#customerspeak .flexslider .slides .customerBackground img {
height: 100vh;
}
#customerspeak .flex-direction-nav a {
margin-top: 37%;
}
#customerspeak .flex-next {
left: 62.5% !important;
}
#customerspeak .flex-prev {
left: 34% !important;
}
}
}
Run Code Online (Sandbox Code Playgroud)
尝试@-moz-document url-prefix()在@media查询之前使用第一个.
@-moz-document url-prefix() {
@media screen and (min-height:650px) {
/* insert code here*/
}
}
Run Code Online (Sandbox Code Playgroud)