2

I have a webpage - http://bit.ly/YHFX5B and if you take a look at the footer you will see that there are a few extra white pixels/lines after it. I can't understand where they are coming from.

Please advice where they could be coming from.

Thank you, Dan

4

3 回答 3

2

#footer填充更改为

padding: 20px 0 15px 0;
于 2013-02-21T04:20:10.363 回答
0

这是由这种样式的填充引起的:

#footer a {
   padding: 4px 4px 4px 0;
}

将其更改为

#footer a {
    padding: 4px 4px 2px 0
}
于 2013-02-21T04:16:34.333 回答
0

将此添加到您的#footer元素中:

#footer {
  overflow: hidden;
}
于 2013-02-21T04:17:17.603 回答