
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Usage of text-shadow property in CSS
The text-shadow property is used to set the text shadow around a text. You can try to run the following code to set the text-shadow property:
Example
<html> <head> </head> <body> <p style = "text-shadow:3px 2px 5px red;"> If your browser supports the CSS text-shadow property, this text will have a red shadow. </p> </body> </html>
- Related Questions & Answers
- Animate CSS text-shadow property
- Usage of text-transform property in CSS
- Usage of text-decoration property in CSS
- Usage of text-indent property in CSS
- Usage of text-align property in CSS
- CSS Text Shadow
- Animate box-shadow CSS property
- Usage of CSS visibility property
- Usage of CSS perspective property
- Usage of CSS grid property
- Usage of direction property in CSS
- Usage of color property in CSS
- Usage of background property in CSS
- Usage of font property in CSS
- Set the text shadow around a text with CSS
Advertisements