删除第二个盒子和盒子之间的空间第3盒

时间:2016-06-16 06:27:03

标签: html css

在下图中,您可以看到3个方框

enter image description here

第二盒和第二盒之间有一些空的空间。第3个方框,请帮我删除那个空间。

@media only screen and (min-width: 1224px)
.qty-ct2 {
    float: left;
    height: auto;
    line-height: normal;
    margin: 0 !important;
    padding: 0 !important;
    width: 34px;
}

HTML

<th rowspan="<?php echo $mergedCells; ?>" class="a-center" id ="cart2">
                        <?php echo $this->__('Qty') ?>

2 个答案:

答案 0 :(得分:1)

**编辑**只需添加

.increase {
         border-left: 0px solid #ccc !important;
         margin: 0px 0px !important;

 }

!important 表示如果由于现有代码而未应用css。

答案 1 :(得分:0)

试试这个解决方案

@media only screen and (min-width: 1224px)
.increase {
    border-left: medium none;
    /* margin-right: 1px; */
    margin: 0;
    width: 34px;
}