gpt4 book ai didi

html - 圆圈中的图像

转载 作者:太空宇宙 更新时间:2023-11-03 23:43:03 25 4
gpt4 key购买 nike

假设我有以下图片:

enter image description here

在我的网站上,我想用这样的圆圈包围它:

enter image description here

问题:是否可以使用 CSS 来做到这一点/如何做?如果是,哪个选项更好,是用圆圈实际制作图像还是使用 CSS?

最佳答案

,您可以使用 CSS 创建

现场查看jsFiddle

HTML

<div id="outbody">
<img class="img-circle" src="http://i.stack.imgur.com/Ysyvw.png">
</div>

CSS

#outbody
{
width:35%;
padding:10px;
background-color:#fe0000;
}
.img-circle {
width: 90%;
border: 10px solid white;

-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;

-webkit-box-shadow: 0 0px 15px rgba(0,0,0,1);
-moz-box-shadow: 0 0px 15px rgba(0,0,0,1);
box-shadow: 0 0px 15px rgba(0,0,0,1);
}

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

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