标签:基础知识 medium hello class world code 基础 数值 阴影
font-weight: 100; /* Thin */ font-weight: 200; /* Extra Light */ font-weight: 300; /* Light */ font-weight: 400; /* 等同于:normal; */ font-weight: 500; /* Medium */ font-weight: 600; /* Semi Bold */ font-weight: 700; /* 等同于:bold; */ font-weight: 800; /* Extra Bold */ font-weight: 900; /* Ultra Bold */
text-shadow: h-shadow v-shadow blur color;
h-shadow
必需。水平阴影的位置。允许负值。v-shadow
必需。垂直阴影的位置。允许负值。blur
可选。模糊的距离。color
可选。阴影的颜色。只有 x
和 y
参数值是必须定义的。blur
的缺省值为 0
,而 color
缺省值为文本的颜色。
h1{ text-shadow: 0 2px 5px rgba(0,0,0,0.5);}
标签:基础知识 medium hello class world code 基础 数值 阴影
原文地址:https://www.cnblogs.com/haorui3/p/11089080.html