为什么我的徽标旁边有红线?

时间:2012-05-16 13:03:27

标签: html css image

我的徽标旁边有一条奇怪的红线,我不能为我的生活找出原因。

看看: http://www.pdf-explode.com.au/index.php

这是我正在谈论的红线: http://www.bounceapp.com/66618

  • 我试过看了所有的边界,没有红色。
  • 通过背景搜索,没有红色。
  • 检查员无法检查它。
  • 它不在图像中

如果你能找到它,请告诉我。

4 个答案:

答案 0 :(得分:6)

重复背景(红线是字母D的一部分),因此请将no-repeat添加到您的css

答案 1 :(得分:3)

这是repeat上背景图片的#menu a.logo(因此,文档的D再次显示在右侧)。删除重复。

答案 2 :(得分:2)

你的css:

#menu a.logo {
    background: url("../images/logo1.png") repeat scroll 0 0 transparent;
    height: 45px;
    left: 0;
    position: absolute;
    text-indent: -10000px !important;
    top: 5px;
    width: 265px;
    z-index: 10;
}

正确的CSS:

#menu a.logo {
    background: url("../images/logo1.png") no-repeat scroll 0 0 transparent; //edited
    height: 45px;
    left: 0;
    position: absolute;
    text-indent: -10000px !important;
    top: 5px;
    width: 263px; //edited
    z-index: 10;
}

您的徽标宽度为263px;

答案 3 :(得分:2)

这是因为您的徽标开始重复。该线来自红色“D”。添加background-repeat: no-repeat;或缩短徽标宽度约2个像素。