How to create text blur effect using style sheets

How to create text blur effect using style sheets cover image
  1. Home
  2. CSS
  3. How to create text blur effect using style sheets

Internet Explorer displays several text effects through style sheets. Here I’ll show you how to create a blur effect to text using style sheets.

The blur is made using the filter rule through which we specify the blur direction and its strength in pixels. The height and the width rules are important too.
This style can be placed inside the HTML head section, to be called using the CLASS attribute of a <DIV> or <SPAN> tags or the style can be used as an inline style.

Note: These style sheet commands do not work in Netscape 4.7x.

The Blur Filter

The text blur style sheet

      {height:50;
       width:400;
       font-size:20pt;
       font-weight:bold;
       filter:Blur(Direction=45, Strength=8)}
CSS HTML