gpt4 book ai didi

CSS - 如何将框阴影应用于圆形图像

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

这是我的简单 CSS 代码:

header img {
box-shadow: 0 0 40px 5px #CCC ;

}

看起来像这样:

enter image description here

我的 logo.png 使用 photoshop 进行了四舍五入:http://s8.postimg.org/3ws8ehaud/logo_easyjobs.png

最佳答案

尝试 THIS .希望这可以帮助。我使用 border-radius 使 div 变圆。

CSS:

.header {
width: 150px;
height: 150px;
border-radius: 150px;
-webkit-border-radius: 150px;
-moz-border-radius: 150px;
background: url(http://s8.postimg.org/3ws8ehaud/logo_easyjobs.png) no-repeat center center;
box-shadow: 0 0 8px rgba(0, 0, 0, .8);
-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .8);
-moz-box-shadow: 0 0 8px rgba(0, 0, 0, .8);
}

关于CSS - 如何将框阴影应用于圆形图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23749077/

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