col-md-offset- *的目的是什么?
我知道没有偏移的col-md-12的目的.但由于这一点,我不知道,我试图玩它,但仍然没有.
最佳答案 使用.col-md-offset- *类向右移动列.这些类通过*列增加列的左边距.例如,.col-md-offset-2在四列上移动.col-md-2.
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
</head>
<body>
<div class="col-md-12">
<div class="col-md-2">First col-md-2</div>
<div class="col-md-2 col-md-offset-2"> col-md-2 with offset 2</div>
</div>
</body>
</html>