【发布时间】:2015-07-13 04:05:25
【问题描述】:
我正在尝试删除台式机的滚动,但继续滚动手机和平板电脑。谁能告诉我为什么下面的代码不起作用?
/* Small devices (tablets, 768px and up) */
@media (min-width: @screen-sm-min) {
body {
overflow-y:visible;
}
}
/* Medium devices (desktops, 992px and up) */
@media (min-width: @screen-md-min) {
body {
overflow-y:visible;
}
}
/* Large devices (large desktops, 1200px and up) */
@media (min-width: @screen-lg-min) {
body {
overflow-y:hidden;
}
}
【问题讨论】:
-
您能否提供 html 或为它创建一个小提琴?
标签: html twitter-bootstrap css media-queries