表格边框合并和li边框合并


width没设置,默认以body一样,height没设置默认为0
1
li{
    float: left;
    width: 70px;
    height: 70px;
    border: 1px solid #CCC;
    text-align: center;
    line-height: 70px;

    /*合并边框的一种方法*/
    margin-left:-1px;
    margin-top:-1px;
}
2
 
  
.table{
      width: 500px;
      height: 500px;
      border-spacing: 0;
    border-collapse: collapse;/*表格边框合并*/
    border:1px solid blue;


}

你可能感兴趣的:(表格边框合并和li边框合并)