css 我怎样才能创建一个模糊阴影的圆圈[关闭]

8xiog9wr  于 2023-03-25  发布在  其他
关注(0)|答案(1)|浏览(140)

已关闭。此问题需要details or clarity。当前不接受答案。
**想要改进此问题?**添加详细信息并通过editing this post阐明问题。

4天前关闭。
Improve this question
我想创建一个阴影模糊的圆圈
Circle

vshtjzan

vshtjzan1#

你可以使用filter: blur

.blurryCircle {
  width: 50px;
  height: 50px;
  display: inline-block;
  background: blue;
  border-radius: 50%;
  filter: blur(25px);
 }
<span class="blurryCircle">&nbsp;</span>

或者,如果你想要一个实心圆,* 带有 * 一个模糊的阴影,你可以使用filter: drop-shadow
一个二个一个一个

相关问题