简体   繁体   中英

Glowing blur in css

How do we add blackish blur effect in css? I have a piece of text in a div and a background image. I want to blur only the text background.

Image 在此处输入图片说明

I want to add blur effect only behind Mickey and Minnie .
Here is the code : http://jsfiddle.net/s5jyoo73/

Possible Duplicate of : How can I make a CSS glass/blur effect work for an overlay?

You can use CSS3 text-shadow.

Apply text-shadow: 0 0 10px #000000; to <h1> and change the backgound color of <header> to see the changes

Try to add:

h1 {
  font-family: sans-serif;
  -webkit-filter: blur(3px); 
  -moz-filter: blur(3px); 
  -o-filter: blur(3px); 
  -ms-filter: blur(3px); 
   filter: blur(3px);
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM