bootstrap缩略图填充

时间:2015-02-09 02:43:01

标签: css html5 twitter-bootstrap twitter-bootstrap-3

这是我的代码:

 @for (int j = 0; j < 10; j++)
                    {
                        <div class="col-lg-2 col-md-3 col-sm-4 col-xs-12">
                            <div class="thumbnail">
                                <img src="http://placehold.it/800x500" alt="">
                                <div class="">
                                    <h3>Feature Label</h3>
                                    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
                                    <p>
                                        <a href="#" class="btn btn-primary">Buy Now!</a> <a href="#" class="btn btn-default">More Info</a>
                                    </p>
                                </div>
                            </div>
                        </div>
                    }

如何减少每个项目之间的差额(请查看附件)

谢谢

enter image description here

1 个答案:

答案 0 :(得分:1)

.col-lg-2.col-md-3.col-sm-4.col-xs-12
{
    padding: 0 your desired padding/2;
}

实际上,它是填充。不是保证金。

这是bootply示例: - http://www.bootply.com/4yqAuLl9tM