gpt4 book ai didi

image - div 中带有图像的中心 anchor

转载 作者:行者123 更新时间:2023-12-01 16:48:57 24 4
gpt4 key购买 nike

我有一个位于 anchor 元素中的图像。

我希望 anchor 和图像在父 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;
}

结果:

enter image description here

最佳答案

position:relative 添加到您的包装器中,然后将图像的 CSS 更改为:

.anchor > img {
height: 100px;
width: 100px;
position:absolute;
margin:auto;
top:0;right:0;bottom:0;left:0;
}

<强> jsFiddle example

关于image - div 中带有图像的中心 anchor ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23282890/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com