html - 使用 Bootstrap 网格从缩略图中删除边距

标签 html css twitter-bootstrap grid margin

如何删除 Bootstrap 网格中缩略图之间的边距? 我希望缩略图没有边距并排...

这是用于显示缩略图的代码。 http://www.bootply.com/rrlpsBWCrx

Image of how it is right NOW

<div class="col-md-1" style="margin-right:0px; margin-left:0px; display:inline-block;">
  <a href="#" class="thumbnail goodPick" style="display: inline-block; margin: 0px 0px 0px 0px;">
    <img src="http://cdn.dota2.com/apps/dota2/images/heroes/earthshaker_vert.jpg" class="img-responsive" alt="Earthshaker">
  </a>  
</div>
<div class="col-md-1" style="margin-right:0px; margin-left:0px; display:inline-block;">
  <a href="#" class="thumbnail goodPick" style="display: inline-block; margin: 0px 0px 0px 0px;">
    <img src="http://cdn.dota2.com/apps/dota2/images/heroes/earthshaker_vert.jpg" class="img-responsive" alt="Earthshaker">
  </a>  
</div>
<div class="col-md-1" style="margin-right:0px; margin-left:0px; display:inline-block;">
  <a href="#" class="thumbnail goodPick" style="display: inline-block; margin: 0px 0px 0px 0px;">
    <img src="http://cdn.dota2.com/apps/dota2/images/heroes/earthshaker_vert.jpg" class="img-responsive" alt="Earthshaker">
  </a>  
</div>
<div class="col-md-1" style="margin-right:0px; margin-left:0px; display:inline-block;">
  <a href="#" class="thumbnail goodPick" style="display: inline-block; margin: 0px 0px 0px 0px;">
    <img src="http://cdn.dota2.com/apps/dota2/images/heroes/earthshaker_vert.jpg" class="img-responsive" alt="Earthshaker">
  </a>  
</div>
<div class="col-md-1" style="margin-right:0px; margin-left:0px; display:inline-block;">
  <a href="#" class="thumbnail goodPick" style="display: inline-block; margin: 0px 0px 0px 0px;">
    <img src="http://cdn.dota2.com/apps/dota2/images/heroes/earthshaker_vert.jpg" class="img-responsive" alt="Earthshaker">
  </a>  
</div>

最佳答案

元素有填充:http://www.bootply.com/9X6g2U425y

.col-md-1 {
    padding: 0;
}

我是怎么找到它的?您可以右键单击一个元素并按“检查元素”。您将能够在浏览器开发工具中看到应用的样式。

关于html - 使用 Bootstrap 网格从缩略图中删除边距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34537904/

相关文章:

php - 使用 php - bootstrap 风格从数据库检索数据到选定的框

c# - 在 ASP.NET 中的下拉列表顶部显示高优先级项目

未调用 Javascript 函数

css - 我想要一个 100% body 高度的 CSS 布局

html - Bootstrap 固定导航在滚动时跳转

css - Glyphicon 显示在新行

javascript - 如何从 Bootstrap 日期时间选择器中删除 AM/PM

html - 当文本居中对齐时将 <a> 和 <p> 放在一行中

javascript - 如何在语义-ui react 中设置最小高度

javascript - 在鼠标悬停时显示不同的标题文本(手电筒效果)