css 好看的文字特效
时间: 2023-11-17 21:03:47 浏览: 164
一款不错的的各种各样的文字效果特效
以下是两种CSS文字特效的例子:
1. 文字描边特效
```css
color: rgb(255, 255, 255);
-webkit-text-stroke: 2px rgb(0, 0, 0);
```
这个特效可以让文字看起来更加醒目,具有强烈的视觉冲击力。
2. 文字缩放特效
```css
width: 397.184px;
height: 111.212px;
font-family: Youshe-Title-Bold, Arial;
font-size: 92.6px;
font-weight: normal;
font-style: normal;
text-align: left;
letter-spacing: 0px;
line-height: 1;
color: #000;
transform: scale(0.6);
```
这个特效可以让文字看起来更加立体,具有强烈的空间感。
阅读全文