我正在尝试将图像放置在精美的边框内,以使边框覆盖图像。我已经让它几乎工作了,我希望有人能给我我需要的最后一点。在下面的示例中,如果我从主 div 容器中删除背景,则图像框架效果很好。有了背景,图像是不可见的,大概隐藏在白色容器背景后面。这是一个用于测试的 dabblat:http: //dabblet.com/gist/4356232
<style>
div {
background: #fff;
}
a {
width: 287px;
height: 142px;
display: block;
position: relative;
background: url(http://divisioncamera.erentalpro.com/web/list.png) no-repeat;
}
img {
position: absolute;
max-height: 287px;
max-width: 142px;
top: 0;
bottom: 0;
right: 0;
left: 0;
margin: auto;
z-index: -1;
}
</style>
<div>
<a>
<img src="http://placekitten.com/300/300"/>
</a>
</div>