基础知识
Posted haorui3
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基础知识相关的知识,希望对你有一定的参考价值。
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)
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);
Hello World
以上是关于基础知识的主要内容,如果未能解决你的问题,请参考以下文章