jquerycsscss-selectorscss3pie

How to create the style as in the attached


Am beginner with CSS. How can I generate the CSS for generating shadow effect as in the attachment?

enter image description here


Solution

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

    span {
        -webkit-text-fill-color: white; /* Will override color (regardless of order) */
        -webkit-text-stroke-width: 2px;
        -webkit-text-stroke-color: grey;
        text-shadow: -2px -1px 10px rgba(0,0,0,0.6);
    }