css text shadow

Usually use text-shadow: 1px solid #fff; the displayed text shadow is like this:

 But the shadows given by these drafts are all around, not just below, so the css can be written like this:

text-shadow: -1px 1px 0 #000, 1px 1px 0 #000,1px -1px 0 #000,-1px -1px 0 #000; 

The effect is as follows:

 In this way, the top of the word is not wrapped, but it is much better than the above,

Welcome to correct me, or if there is a better way to achieve it, please discuss it

Guess you like

Origin blog.csdn.net/yezi_12345/article/details/129923530