Make the Text color Transparent or Blurred as well as Shadow

Vishalneeraj-24503
Posted by Vishalneeraj-24503 under CSS 3 category on | Points: 40 | Views : 850
We have to write one CSS class for making Text as Transparent:-
.blur 
{
color: transparent;
text-shadow: 0 0 5px rgba(0,0,0,0.5);
}


Apply above CSS on Textbox.

Comments or Responses

Login to post response