CSS: create white glow around image

后端 未结 6 1711
眼角桃花
眼角桃花 2020-12-07 21:59

How can I create a white glow as the border of an unknown size image?

6条回答
  •  爱一瞬间的悲伤
    2020-12-07 22:34

    Depends on what your target browsers are. In newer ones it's as simple as:

       -moz-box-shadow: 0 0 5px #fff;
    -webkit-box-shadow: 0 0 5px #fff;
            box-shadow: 0 0 5px #fff;
    

    For older browsers you have to implement workarounds, e.g., based on this example, but you will most probably need extra mark-up.

提交回复
热议问题