我有一个锚元素中的图像。
我希望锚点的图像在父div中垂直和水平居中。
Here是一个例子:
<div class="wrapper">
<a href="#" class="anchor">
<img src="http://bit.ly/1mFH8AW"></img>
</a>
</div>
.wrapper {
background: black;
width: 500px;
height: 500px;
}
.anchor {
}
.anchor > img {
height: 100px;
width: 100px;
}
结果:
答案 0 :(得分:5)
将position:relative
添加到您的包装器,然后将图像的CSS更改为:
.anchor > img {
height: 100px;
width: 100px;
position:absolute;
margin:auto;
top:0;right:0;bottom:0;left:0;
}
<强> jsFiddle example 强>