1

在此处输入图像描述

有谁知道为什么图像没有与容器的右下角对齐,而是有某种假想的边距导致它与按钮重叠?

在 IE8 中出现,在任何其他浏览器中查看页面,它看起来都很棒。

现场示例供您检查。

提前致谢 :)

4

2 回答 2

2

将第 1616 行的 css 更改为“text-align:right”应该可以修复它。

.dealerLogo {
   text-align: right;
   position: absolute;
   bottom: 0;
   right: 0;
   cursor: pointer;
}
于 2012-05-16T14:48:37.573 回答
1

我不知道为什么会这样,我也没有努力去找出答案。

要解决此问题,请.vcard .dealerImages .dealerLogo更改text-align: centertext-align: right. 这在其他浏览器中没有任何区别,但修复了 IE8。

您还需要添加z-index: 1,.vcard .dealerImages .dealerContact以保持橙色按钮的最右侧部分正常工作。

于 2012-05-16T14:48:57.900 回答