有谁知道为什么图像没有与容器的右下角对齐,而是有某种假想的边距导致它与按钮重叠?
这仅在 IE8 中出现,在任何其他浏览器中查看页面,它看起来都很棒。
提前致谢 :)
将第 1616 行的 css 更改为“text-align:right”应该可以修复它。
.dealerLogo {
text-align: right;
position: absolute;
bottom: 0;
right: 0;
cursor: pointer;
}
我不知道为什么会这样,我也没有努力去找出答案。
要解决此问题,请.vcard .dealerImages .dealerLogo
更改text-align: center
为text-align: right
. 这在其他浏览器中没有任何区别,但修复了 IE8。
您还需要添加z-index: 1
,.vcard .dealerImages .dealerContact
以保持橙色按钮的最右侧部分正常工作。