freeCodeCamp/guide/chinese/css/properties/css3-text-shadow-property/index.md

20 lines
546 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
title: CSS3 Text Shadow Property
localeTitle: CSS3文本阴影属性
---
## CSS3文本阴影属性
文本阴影属性为文本添加阴影。 每个阴影都是原始元素的X和Y偏移模糊半径和颜色的组合。 \`\`\`css Css语法
text-shadowX偏移Y偏移模糊半径颜色
```
**Example :**
```
CSS p { text-shadow2px 2px 8pxFF0000; } \`\`\`
#### 更多信息:
[MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow)
[W3Schools的](https://www.w3schools.com/cssref/css3_pr_text-shadow.asp)