Copyright © tutorialspoint.com

CSS - text-shadow

previous next


Description:

The text-shadow property specifies one or more shadows which are derived from the text of an element.

Possible Values:

Applies to:

All the HTML elements.

DOM Syntax:

object.style.textShadow="red";

Example:

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


previous next

Copyright © tutorialspoint.com