11

在引导程序 2 之前,您可以通过反转浮点数来反转网格中的堆叠顺序。

在引导程序 3 中,这似乎不起作用。谁能告诉我bootstrap 3的解决方案?

任何援助将不胜感激。

4

2 回答 2

16

使用 .col-md-push-*and.col-md-pull-*修饰符类。参见: http: //getbootstrap.com/css/#grid-column-ordering

示例

<div class="container"> 
<div class="col-sm-5 col-sm-push-7" style="height:50px;background-color:green;">first right</div>
<div class="col-sm-7 col-sm-pull-5" style="height:100px;background-color:red;">second left</div>
</div>  
于 2013-08-31T11:07:09.683 回答
3

在 Bootstrap 3 中,您可以使用col-md-push-col-md-pull-
这是完整的代码。
我希望这能解决你的问题。

<html><head>
	<title>Bootstrap in practice: the grid system</title>
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<!-- Bootstrap CSS -->
	<link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet">

	<!-- To better visualize the columns -->
	<style>
	.row > div {
		background-color: #dedef8;
		box-shadow: inset 1px -1px 1px #444, inset -1px 1px 1px #444;
	}
	</style>

</head>
<body>
<div class="container">

	<h1>Hello, world!</h1>

	<div class="row">
		<div class="col-md-4 col-md-push-8">I was left</div>
		<div class="col-md-8 col-md-pull-4">I was right</div>
	</div>
</div>

</body></html>

在单独的 HTML 页面中运行此代码

这是快照 在此处输入图像描述

于 2015-03-18T23:35:56.533 回答