CSS 3 Text Shadow
How to make Text Shadow using CSS 3 ?
Using HTML Text and CSS3, we can create the shadow effects on text…
suitable for headings or large text on web pages…
so, you do not need to change the text into image to get a shadow effect.
Example for css3 text shadow:
<html>
<head>
<title>How to make Font Shadow using CSS 3</title>
<style type="text/css">
.fontShadow {
color: #2178d9;
font-size: 24px;
}
.fontShadow {
text-shadow: 2px 2px 1px #000;
}
</style>
</head>
<body>
<p>I will show you
<span><h1>How to create Text shadow</h1></span>
</p>
</body>
</html>
The Result:
I will show you How to create Text shadow
So, with css text you will get a short time to work
- Welcome to CSS Syntax [dot] com
Welcome to our Website ... CSS Syntax com is a website that explains about anything related to web...
www.csssyntax.com - CSS 3 Background Color Opacity
Everyone knows what RGB stands for (red, green, blue), but what does the A stand for?
www.csssyntax.com - CSS 3 Text Shadow
Using CSS3, we can create shadow effects on text with very simple syntax
www.csssyntax.com - CSS 3 Box Shadow
Excess CSS3 is able to make something that can not be done by CSS2
www.csssyntax.com
