我使用的是Bootstrap MVC,并为内部博客的索引页面提供了3列布局。小左栏,显示图片,中间的博客和小右栏中的有用小部件。
当您在移动设备上查看该网站时,它会按预期移动,但我希望左侧列仅在移动设备的主博客列之后移动。这有可能我找到了推送和拉动命令但它只为手机做了吗?
干杯
答案 0 :(得分:0)
我要做的是在您自己的css文件中使用默认媒体查询。这些是bootstrap使用的:
/* Extra small devices (phones, less than 768px) */
/* No media query since this is the default in Bootstrap */
/* Small devices (tablets, 768px and up) */
@media (min-width: @screen-sm-min) { ... }
/* Medium devices (desktops, 992px and up) */
@media (min-width: @screen-md-min) { ... }
/* Large devices (large desktops, 1200px and up) */
@media (min-width: @screen-lg-min) { ... }
或根据您的布局,您可能需要不同的断点。你只需要为那些列使用id,或者添加类来获得你想要的行为。
希望它有所帮助!