- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Add shadow effects to text with CSS
Use the text-shadow property to add shadow effects to text. The following is an example to add shadow effects −
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>Tutorialspoint.com</h1> <h2>Tutorialspoint.com</h2> <h3>Tutorialspoint.com</h3> <h4>Tutorialspoint.com</h4> <h5>Tutorialspoint.com</h5> <h6>Tutorialspoint.com</h6> <p>Tutorialspoint.com</p> </body> </html>
Output
- Related Articles
- Add shadow effects to elements with CSS
- Add more than one shadow to a text with CSS
- Add shadow to elements with CSS
- CSS Text Shadow
- How to create CSS3 Box and Text Shadow Effects?
- Add a color to the shadow with CSS
- Set the text shadow around a text with CSS
- How to add visual effects to images with CSS?
- Add a blur effect to the shadow with CSS
- Create white text with black shadow using CSS
- How to add shadow on text swift?
- Animate CSS text-shadow property
- How to add shadow on a text in Android?
- Usage of text-shadow property in CSS
- How to add shadow Effect for a Text in Android?

Advertisements