gpt4 book ai didi

html - 在 css 圆圈中居中图像

转载 作者:太空狗 更新时间:2023-10-29 13:35:43 24 4
gpt4 key购买 nike

enter image description here

这是一个CSS圈子里的图片。我希望圆圈围绕图像,因此图像应该位于中心。我该怎么做?

HTML:

<div class="circletag" id="nay">
<img src="/images/no.png">
</div>

CSS:

div.circletag {
display: block;
width: 40px;
height: 40px;
background: #E6E7ED;
-moz-border-radius: 20px;
-webkit-border-radius: 20px;
}
div.circletag.img {

}

最佳答案

使用图片作为背景图片。

.circletag {
display: block;
width: 40px;
height: 40px;
background: #E6E7ED;
-moz-border-radius: 20px;
-webkit-border-radius: 20px;
background-image: url(no.png);
background-position:50% 50%;
background-repeat:no-repeat;
}

如果您不想让整个外部 div 都可以点击,这可能会起作用:

.circletag {
display: block;
width: 40px;
height: 40px;
background: #E6E7ED;
-moz-border-radius: 20px;
-webkit-border-radius: 20px;
text-align:center;
}

.circletag img{
margin-top:7px;
}

关于html - 在 css 圆圈中居中图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8473443/

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