how to set shadow for round image(css)

前端 未结 10 2080
暖寄归人
暖寄归人 2020-12-31 11:52

I\'m new to shadow in css can we set shadows for round image(i mean to a circle image).

if it is possible, please give me a code for this in css. thanks in advan

10条回答
  •  醉酒成梦
    2020-12-31 12:15

    box-shadow: 0 0 98px 6px rgba(0, 0, 0, 0.2); // this is must but values are just an example, set accordingly.
    border-radius: 50%; //this is must.
    

    Apply this CSS to your tag or its class, and you are done.

提交回复
热议问题