如何清除ul和li的底部空间

时间:2017-09-07 07:53:28

标签: php html css

我在这里获得额外的空间

ul和class

的样式css
ul {
  display: table-cell;
  list-style: none;
  padding: 0px 0px 0px 0px;
}

li {
  width: 20px;
  float: left;
}

.Chair {
  background-image: url(Images/blnk.png);
  height: 40px;
}

PHP代码

while($r = $result->fetch_assoc()) {
   echo  '<ul id="sub">';
   if($r['seats'] == null){ 
      echo '<li class="Chair" ></li><ul>';
   }
}

enter image description here

1 个答案:

答案 0 :(得分:1)

根据我的评论删除或设置Heights:40px课程中的.Chair。所以这是完整的代码

 ul {
      display: table-cell;
      list-style: none;
      padding: 0px 0px 0px 0px;
    }

    li {
      width: 20px;
      float: left;
    }

    .Chair {
      background-image: url(Images/blnk.png);
    }

如果您想添加高度,请设置height: 20px