奇怪的白线

时间:2013-04-03 17:30:13

标签: html css

出于某种原因,我的一个元素上出现了一条奇怪的白线。

看看它的样子:

enter image description here

它位于左侧的介绍旁边。

我查看了代码,似乎无法找到它

位于http://divisionforty.com

我不知道问题出在哪里,所以我无法发布任何代码。

3 个答案:

答案 0 :(得分:0)

该行来自span.arrow_right

答案 1 :(得分:0)

这是HTML的一点点:

<span class="arrow_right"></span>

答案 2 :(得分:0)

所有答案都很棒!但事实证明我用逗号

阻止了部分代码

此:

/* Title Right ----------------------------*/

.title_right, .title_right_services_page h3{
    color: #bd2d67;
    padding: 0;
}
.title_right, .title_right_services_page h1{
    line-height: 45px;
}
.title_right, .title_right_services_page p{
    color: #777;
    font-size: 21px;
    line-height: 30px;
    font-weight: 200;
}
.title_right_services_page{
    border-left: 2px solid #cdcdcd;
    position: relative; 
    text-align: right;
    padding:0 0 30px 1%;

}
.title_right,{
    border-left: 2px solid #cdcdcd;
    position: relative; 
    text-align: right;
    padding:0 0 30px 1%;
}
.arrow_right{
    background: url("../img/arrow_right.png") no-repeat center;
    position: absolute;
    width: 53px;
    height: 49px;
    left: -40px;
    top: 40%;
}
.arrow_rightb{
    background: url("../img/arrow_rightb.png") no-repeat center;
    position: absolute;
    width: 53px;
    height: 49px;
    left: -40px;
    top: 40%;
}

对此:

/* Title Right ----------------------------*/

.title_right h3{
    color: #bd2d67;
    padding: 0;
}
.title_right h1{
    line-height: 45px;
}
.title_right p{
    color: #777;
    font-size: 21px;
    line-height: 30px;
    font-weight: 200;
}
.title_right{
    border-left: 2px solid #cdcdcd;
    position: relative; 
    text-align: right;
    padding:0 0 30px 1%;

}

那就修好了!

全部谢谢

丹佛