我希望所有输入和按钮元素在

最佳答案

您可以处理媒体查询

@media screen and (max-width:767px){
//all the styles for btns within 767px
}
@media screen and (min-width:767px){
//all styles above 767px
}


您也可以使用jquery实现此目的:

if($(window).outerHeight(true) <  767){
   //add class to your btns and lists and remove classes...
}


这是一种方法,有很多方法。

10-08 20:25