Bluring text online on your website or blog is very easy to pull off with some very simple CSS code.
Just be sure to assign the class of blur
to the text you want to blur and make unreadable. For example <p class="blur">
Here is an example of the blurred text with the paragraph below being the same exact text as this paragraph except the text has been blurred via the CSS code
Here is an example of the blurred text with the paragraph below being the same exact text as this paragraph except the text has been blurred via the CSS code
You can adjust how blurred the text is by changing the 8px
in the css code to a different number. For example by changing 8px
to 4px
...
Here is an example of the blurred text with the paragraph below being the same exact text as this paragraph except the text has been blurred via the CSS code
Here is an example of the blurred text using 12px
...
Here is an example of the blurred text with the paragraph below being the same exact text as this paragraph except the text has been blurred via the CSS code
You can also blur text by using inline css code like this ...
Keep in mind that this will not actually blur the text on the website itself, but how it looks on your computers web browser.
To blur the text, or create the appearance of blurrred text on a web page on your computer ...
Inspect
. You will see a pane open up showing you the html code for the selected text you wish to blur. The text you selected will be highlight or selected in the html code inspection window.<
followed by one or two letters followed by a right brackett >
. For example <p>
or <li>
or <h2>
, etc. double click on this which will cause the one or two letters between the left and right bracketts to become selected and editable.style="color:transparent;text-shadow:0 0 8px #000;"
.