Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 266 Bytes

text_shadow.md

File metadata and controls

20 lines (14 loc) · 266 Bytes

文本阴影:text-shadow

介绍

给文本应用阴影

语法

text-shadow : none | <length> none | [<shadow>, ] * <shadow> 或none | <color> [, <color> ]*

例:给p元素应用阴影

p
{
text-shadow: 5px 5px 5px #35b558;
}