Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
How to add Shadow Effect on Text Using CSS. Cascading style sheets are applied for styling an HTML page. This adds all the elements that an HTML page can probably contain. Text styling is a pretty remarkable feature inside CSS. It is very significant that there are unity and synchrony in the styling of the text content on a page with different elements like images, links, buttons, etc. With the use of CSS, we can ensure that the text on the page is in sync. CSS allows many text innovations like text color, letter spacing, text size, line height, text direction. One such property is Text-shadow. By using this feature, we can pitch the text with a shadow, to highlight the text. This will give excellent planning of the text that we want to be highlighted. This article will present in detail about these particular features. In this topic, we are going to learn about Text-Shadow Effect using CSS.
Read Also: Introduction to CSS Controls.
Text-shadow can be utilized in inline CSS, internal CSS, or External CSS. The syntax for text-shadow is:
text-shadow: horizontal-shadow vertical-shadow blur-radius color/none/ inherit/initial;
| Here, 5px 5px 5px horizontal-shadow, vertical-shadow, blur-radius are compulsory parameters, while color is an optional parameter.
Read Also: What is CSS?
Let’s define the feature through examples for better understanding:
<h1 style="text-shadow: 1px 2px 4px hotpink;">Text Shadow</h1>
Read Also: Styling CSS Tables.
<h1>Text-shadow Property</h1> <style type="text/css"> h1{ text-align: center; text-shadow: 4px 2px 4px hotpink, -4px -2px 4px red; font-size: 20px; background-color: #ddd; border: 3px solid #eee; margin: 100px; } </style>
So, we explained the effectiveness of the text-shadow property proposed by CSS for styling texts in our HTML pages. There are many other methods, that one can try with text-shadow. It will be of outstanding use for highlighting some essential text.
Have a Good Day.