我正在使用kube css框架来开发我的网站的前端,但我想禁用此框架默认提供的响应功能。我想用几个简单的行(css
或js
)来做到这一点。也许固定身体的宽度和滚动内部div?
任何提示?
修改
一种可能的简单解决方案是提供此css代码
body{
width:1024px !important;
overflow-x: scroll !important;
}
但我希望一切都集中在一起。
答案 0 :(得分:0)
这是我想要的最终解决方案。
@media(min-width:1024px){
body{
width:100% !important;
overflow-x: scroll !important;
}
}
@media(max-width:1023px){
body{
width:1023px !important;
overflow-x: scroll !important;
}
}