一、新增颜色模式
二、文字阴影
<!DOCTYPEhtml>
<html>
<head>
<metacharset="UTF-8">
<title></title>
<styletype="text/css">
h1{font:100px/200px"微软雅黑";text-align:center;color:#000;
text-shadow:000rgba(0,0,0,1);border:1pxsolid#000;transition:1s;}
h1:hover{color:rgba(0,0,0,0);text-shadow:00100pxrgba(0,0,0,0.5);}
</style>
</head>
<body>
<h1>文字阴影</h1>
</body>
</html>
三、文字描边
<!DOCTYPEhtml>
<html>
<head>
<metacharset="UTF-8">
<title></title>
<styletype="text/css">
h1{font:100px/200px"微软雅黑";text-align:center;color:#fff;
-webkit-text-stroke:3px red;}
</style>
</head>
<body>
<h1>文字描边</h1>
</body>
</html>
<!DOCTYPEhtml>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
p{width:300px; border:1pxsolid#000;font:14px/30px"宋体";
white-space:nowrap;overflow:hidden;text-overflow:ellipsis; }
</style>
</head>
<body>
<p>雪花,原是天空的心事,当心事很重的时候,天空就会飘起雪。是季节变化的太无常了吧,让我们似乎忘了彼此的牵挂,似乎忘了曾经一起团雪球的</p>
</body>
</html>