0

看到这个小提琴

正如您在小提琴中看到的那样,图像左侧有一些空白区域。我已将图像设置为 100% 宽度,但它并没有占用所有空间。您可以通过将鼠标悬停在它上面来检查它。

在此处输入图像描述

HTML

<ul class="ulteamlist">
    <li class="teamlist">
        <img src="http://s21.postimg.org/jpw2o7ofr/image.png">
            <div class="overlay"></div>
        <p>Vikas Ghodke</p>
        <p class="tposition">Lead Developer</p>
    </li>
</ul>

CSS

ul.ulteamlist {
    margin: 0;
    list-style: none;
}
li.teamlist {
    background: #fff;
    box-shadow: 0px 1px 1px -1px #ccc;
    float: left;
    padding:0;
    display: block;
    width:40%;
    margin-bottom: 3%;
    margin-right: 3%;
    transition: all 0.5s;
    position: relative;
}
li.teamlist:hover {
    background:#0dbca1;
}
li.teamlist:hover p {
    color:#fff;
}
.overlay {
    width: 100%;
    height: 210px;
    background: #fff;
    position: absolute;
    top: 0;
    opacity: 0;
    transition: all 0.5s;
}
li.teamlist:hover .overlay {
    opacity: 0.3;
}
li.teamlist:nth-child(4n+4) {
    margin-right: 0;
}
.no-js li.teamlist {
    display: block;
}
li.teamlist img {
    width: 100%;
    height: 210px;
    margin:0;
}
.teamlist p {
    padding: 10px;
    color: #5b5b5b;
    font-weight: 400;
    font-size: 14px;
    padding-left: 15px;
}
p.tposition {
    font-weight: 300;
    margin-top: -27px;
    font-size: 11px;
    margin-bottom: 0;
    color: #9d9c9c;
    text-transform: uppercase;
}
4

3 回答 3

1

从评论(包括我的和 OP 的)扩展:

可以说,这不是“差距”;它是原始图像左侧的一些透明像素:

差距

你可以在这个小提琴中清楚地看到它:

<img src="http://s21.postimg.org/jpw2o7ofr/image.png" />
body {
    background-color:yellow;
}
img {
    outline:1px solid black;
}

使用占位符图片,您的设置似乎很好:

占位符

http://jsfiddle.net/kDdUC/7/

于 2013-09-04T07:02:55.790 回答
0

只需将其添加到您的 css 中即可。我测试过它可以工作

这就是你想要的..

.ulteamlist
{padding:0px;}

在此处输入图像描述

于 2013-09-04T05:40:48.570 回答
-1

通过更改图像进行检查,因为图像本身的 LHS 有一些空间。

于 2013-09-04T06:08:39.607 回答