删除文本之间存在的额外空间

时间:2016-06-14 11:13:50

标签: html css

我们有更多空间here b / w Check COD Availability& qty文字

您可以使用CTRL + F

搜索文本

我想减少这些空间

.block-check-delivery .button {
/*  float: right;   */
position:relative;
left:10px;
  }
.block-check-delivery .block-content > br:first-child {
  display: none;
}

.block-check-delivery .block-content > br:last-child {
  display: none;
}


.block-title {
  float:left;
  position: relative; 
  padding: 10px 0 0; 
  margin-bottom: 5px;
  border-top: none;
  display: inline-block; 

  }   
  .std ul { 
  list-style: disc outside; 
  /* margin-bottom: 1.5em; */ 
  }
.product-view .product-shop .short-description { margin-bottom: 5px; clear: both; }
.block, .col-left-first  { margin-bottom:10px; }
.block-check-delivery .block-content {padding:0 10px;  }
.block-check-delivery input{width: 107px;}

请帮我找到解决方案。提前致谢

3 个答案:

答案 0 :(得分:1)

将此添加到您的CSS

 .product-view .product-shop {
  margin-bottom: -15px;
}

答案 1 :(得分:1)

试试这段代码

.block, .col-left-first {
    margin-bottom: -21px;
}

编辑:添加了缺失的大括号。

答案 2 :(得分:1)

据我所见,由于 padding-bottom 问题即将到来,所以只需从.block.block-list.block-check-delivery移除填充底部,即可获得额外空间。希望它会有所帮助。