我有一个div,它有一个神秘的5px底部填充添加到其中包含的图像。我试过重置所有元素的CSS填充和边距,但无济于事。我在想什么?:IMG在div的底部有5px的额外填充
HTML:
CSS:
.list-result {
padding:0;
margin:0;
width:100%;
border-bottom: 1px #000 solid;
background:#f9f9f9;
}
.list-result:hover {
background:#e9e9e9;
}
#list {
top: 100px;
bottom:40px;
right: 20px;
position: absolute;
width: 20%;
max-width:300px;
}
#boxscroll {
font-family:'Open Sans';
background:#f9f9f9;
overflow: auto;
max-height:100%;
border: 8px solid #fff;
}
2013-07-21
alias51
+2
请接受以下,因为它最肯定似乎是正确的,工作液的答案。 –