| |
CSS Text-Shadow |
|
|
Subject: CSS Text-Shadow
Author: CyberSpider
In response to: CSS Text
Posted on: 04/13/2016 07:40:54 PM
The CSS text-decoration property is used to add shadow to text with values::
<offset-x> -- 12px, 0.1em; <offset-y> -- 1px, 0.1em; <blur-radius> -- 2px, 0.2em; <color> -- blue, #0000cc;
For example:
.blue-shadow {
text-shadow: 1px 1px 2px blue;
}
Try it yourself in sandbox »
>
> On 04/13/2016 07:11:07 PM CyberSpider wrote:
CSS Text-Decoration
The CSS text-decoration property is used to decorate the text with values:: none underline overline line-through underline overline -- both; overline underline line-through -- multiple; blink -- some browsers may not support.
For example:
p.custom {
text-decoration: line-through;
}
Try it yourself in sandbox »
References:
- Next Post: CSS Color CyberSpider 04/13/2016 11:02:46 PM
- Previous Post: CSS Text CyberSpider 04/13/2016 07:11:07 PM
- Next Topic: CSS Color CyberSpider 04/13/2016 11:02:46 PM
- Previous Topic: CSS Font CyberSpider 04/13/2016 06:23:10 PM
- Index: by Date
- Index: by Topic
|
|
|
|