gpt4 book ai didi

css - 透明圆框中的矩形图像

转载 作者:行者123 更新时间:2023-11-28 10:01:08 27 4
gpt4 key购买 nike

我刚刚开始使用 CSS。

我有一个矩形图像。我想把它放在背景上,并以具有光透明度的圆圈为例。

enter image description here

最佳答案

这是你要找的吗?

当您应用:border-radius: 50%; 到您的 img 时,它会根据您的需要得到一个圆圈。

.bg {
background-color: mediumaquamarine;
width: 500px;
height: 500px;
margin: auto
}
img {
border-radius: 50%;
/* Safari 3-4, iOS 1-3.2, Android 1.6- */
-webkit-border-radius: 50%;
/* Firefox 1-3.6 */
-moz-border-radius: 50%;
border: 1px solid red;
margin-left: 25%;
margin-top: 25%;
z-index: 1;
position: relative;
opacity: 0.8
}
<div class="bg">
<img src="http://placehold.it/250x250&text=Image" />
</div>

关于css - 透明圆框中的矩形图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26978165/

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