Am beginner with CSS. How can I generate the CSS for generating shadow effect as in the attachment?
How to create the style as in the attached
65 views Asked by Ajai rajan At
3
There are 3 answers
0
On
HTML:
<p>
CUSTOM FRAMING from $99
</p>
CSS:
p {
-webkit-text-fill-color: rgb(255, 255, 255);
color: rgb(255, 255, 255);
-webkit-text-stroke: 1px rgb(150, 150, 150);
text-shadow: -2px 0px 2px rgb(150, 150, 150);
font-size: 30px; /* Optional. Just for demo purposes. */
}
Snippet below:
p {
-webkit-text-fill-color: rgb(255, 255, 255);
color: rgb(255, 255, 255);
-webkit-text-stroke: 1px rgb(150, 150, 150);
text-shadow: -2px 0px 2px rgb(150, 150, 150);
font-size: 30px; /* Optional. Just for demo purposes. */
}
<p>
CUSTOM FRAMING from $99
</p>

You can use this and you're done...