Copyright © tutorialspoint.com
The text-shadow property specifies one or more shadows which are derived from the text of an element.
All the HTML elements.
object.style.textShadow="red"; |
Following is the example which demonstrates how to set the shadow around a text. This may not be supported by all the browsers.
<p style="text-shadow:4px 4px 8px blue;"> If your browser supports the CSS text-shadow property, this text will have a blue shadow.</p> |
This will produce following result:
If your browser supports the CSS text-shadow property, this text will have a blue shadow. |
To Become more comfortable - Do Online Practice
Copyright © tutorialspoint.com