我试图让 2 个无序列表在 div 中工作以实现两个不同大小的列,但由于某种原因,div 中存在我不想要的额外顶部/底部填充。
#contact-box {
float: right;
border-top: 1px solid #ccc;
background-color: green;
width: 250px;
padding: 0px;
}
ul#networks {
list-style-type: none;
float: left;
width: ;
padding: 0px;
}
#networks li {
border-bottom: 1px solid #ccc;
padding: 7px;
}
ul#contacts {
list-style-type: none;
float: right;
width: 70%;
background-color: red;
padding: 0px;
}
#contacts li {
border-bottom: 1px solid #ccc;
padding: 7px;
}
你可以在这里看到它:http: //jsfiddle.net/XwfLD/ 我知道这在 CSS 中会很简单,但如果有人能提供帮助,我们将不胜感激!