标签: css twitter-bootstrap twitter-bootstrap-3 responsive-design
我目前拥有以下网站:http://flagshub.com/
我想首先显示侧边栏,并且仅在移动视图中显示内容之后。我需要在html代码中做些什么改变?我使用bootstrap作为站点框架。
此致
答案 0 :(得分:1)
使用Bootstrap push和pull类更改订单。在您的情况下,它将是:
push
pull
<aside class="col-md-3 col-md-push-9">...</aside> <div class="col-md-9 col-md-pull-3">...</div>
此处有更多信息:enter link description here