I have used many colors in my website and i want to apply text-shadow to all text but i want it with transparency
right now i using following code to do that
Code :
body{
text-shadow: transparent 0 0 0, rgba(0,0,0, 0.75) 0 0 0.001px;
}
but it apply black color with transparency for example if color is red so i want text-shadow red with transparency.
any help would be appreciated.. thank you..