
- CSS Tutorial
- CSS - Home
- CSS - Introduction
- CSS - Syntax
- CSS - Inclusion
- CSS - Measurement Units
- CSS - Colors
- CSS - Backgrounds
- CSS - Fonts
- CSS - Text
- CSS - Images
- CSS - Links
- CSS - Tables
- CSS - Borders
- CSS - Margins
- CSS - Lists
- CSS - Padding
- CSS - Cursors
- CSS - Outlines
- CSS - Dimension
- CSS - Scrollbars
- CSS Advanced
- CSS - Visibility
- CSS - Positioning
- CSS - Layers
- CSS - Pseudo Classes
- CSS - Pseudo Elements
- CSS - @ Rules
- CSS - Text Effects
- CSS - Media Types
- CSS - Paged Media
- CSS - Aural Media
- CSS - Printing
- CSS - Layouts
- CSS - Validations
- CSS3 Tutorial
- CSS3 - Tutorial
- CSS3 - Rounded Corner
- CSS3 - Border Images
- CSS3 - Multi Background
- CSS3 - Color
- CSS3 - Gradients
- CSS3 - Shadow
- CSS3 - Text
- CSS3 - Web font
- CSS3 - 2d transform
- CSS3 - 3d transform
- CSS3 - Animation
- CSS3 - Multi columns
- CSS3 - User Interface
- CSS3 - Box Sizing
- CSS Responsive
- CSS - Responsive Web Design
- CSS References
- CSS - Questions and Answers
- CSS - Quick Guide
- CSS - References
- CSS - Color References
- CSS - Web browser References
- CSS - Web safe fonts
- CSS - Units
- CSS - Animation
- CSS Resources
- CSS - Useful Resources
- CSS - Discussion
CSS Text Shadow
CSS3 added shadow effects to text, with the text-shadow property. You can try to implement the following code to add text shadow −
Example
<html> <head> <style> h1 { text-shadow: 2px 2px; } h2 { text-shadow: 2px 2px red; } h3 { text-shadow: 2px 2px 5px red; } h4 { color: white; text-shadow: 2px 2px 4px #000000; } h5 { text-shadow: 0 0 3px #FF0000; } h6 { text-shadow: 0 0 3px #FF0000, 0 0 5px #0000FF; } p { color: white; text-shadow: 1px 1px 2px black, 0 0 25px blue, 0 0 5px darkblue; } </style> </head> <body> <h1>Welcome to my website!</h1> <h2>Welcome to my website!</h2> <h3>Welcome to my website!</h3> <h4>Welcome to my website!</h4> <h5>Welcome to my website!</h5> <h6>Welcome to my website!</h6> <p>Welcome to my website!</p> </body> </html>
Output
- Related Articles
- Animate CSS text-shadow property
- Set the text shadow around a text with CSS
- Usage of text-shadow property in CSS
- Add shadow effects to text with CSS
- Set the shadow around the text in CSS
- Create white text with black shadow using CSS
- How to Apply Shadow Effect on Text Using CSS?
- Add more than one shadow to a text with CSS
- CSS Box Shadow
- CSS Shadow Effect
- Shadow Filter with CSS
- Difference between -webkit-box-shadow & box-shadow in CSS
- Animate box-shadow CSS property
- How to add shadow on text swift?
- Add shadow to elements with CSS

Advertisements