我的标志旁边有一条奇怪的红线,我一辈子都想不通为什么。
看看: http ://www.pdf-explode.com.au/index.php
这是我正在谈论的红线:http: //www.bounceapp.com/66618
- 我试过看所有的边界,没有红色。
- 通过背景搜索,没有红色。
- 检查员不能检查。
- 它不在图像中
让我知道你是否能找到它。
我的标志旁边有一条奇怪的红线,我一辈子都想不通为什么。
看看: http ://www.pdf-explode.com.au/index.php
这是我正在谈论的红线:http: //www.bounceapp.com/66618
让我知道你是否能找到它。
背景是重复的(红线是字母的一部分D
),所以添加:no-repeat
到你的css
它是repeat
背景图像的#menu a.logo
(所以它是D
Document 再次出现在右侧)。删除重复。
你的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;
这是因为您的徽标开始重复。这条线来自红色的“D”。添加background-repeat: no-repeat;
或缩短徽标宽度约 2 像素。