Twitter Bootstrap侧边栏右侧而不是左侧

BBJ*_*BJ3 4 html css layout frameworks twitter-bootstrap

Twitter Bootstrap侧边栏的默认配置是左侧.我怎么能在右边移动它?

更新:似乎可以在下一个版本中使用:https://github.com/twitter/bootstrap/issues/333

And*_*ich 7

只需将侧边栏的流向右移,如下所示:

.container-fluid > .sidebar {
    position: absolute;
    right: 20px;
    top: 0;
    width: 220px;
}

.container-fluid > .content {
    margin-right: 240px;
}
Run Code Online (Sandbox Code Playgroud)

编辑演示http://jsfiddle.net/andresilich/6vPqA/show/