首先,twitter bootstrap 中没有 .column 但 .row
如果您想要左/右边距,请使用带有 offset1 的 span10
如果您想要顶部/底部边距,请创建一个新的 .row 并应用类似 .show-grid 的类
对于边框和颜色,对通用类使用类,对特定类使用 id。
您可以像这样在 jsFiddle 上创建模型http://jsfiddle.net/baptme/EHutn/
<!DOCTYPE html>
<html lang="en">
<head>
<link href="css/bootstrap.css" type="text/css" rel="stylesheet">
<style>
.show-grid {
margin-bottom: 20px;
margin-top: 10px;
}
.show-grid [class*="span"] {
background-color: #EEEEEE;
border-radius: 3px 3px 3px 3px;
line-height: 30px;
min-height: 30px;
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<div class="row show-grid">
<div class="span10 offset1">
<p>bla bla bla</p>
</div>
</div>
<div class="row show-grid">
<div class="span10 offset1">
<p>bla bla bla</p>
</div>
</div>
</div>
</body>
</html>