文字阴影(凹凸)效果:
代码内容
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>w3cschool</title>
<style type="text/css">
body{
background-color: #ccc;
}
div{
font: 700 80px "微软雅黑";
color: #ccc;
}
div:first-child{
/* text-shadow: 水平位置 垂直位置 模糊距离 阴影颜色 */
text-shadow: 1px 1px 1px #000,-1px -1px 1px #fff;
}
div:last-child{
/* text-shadow: 水平位置 垂直位置 模糊距离 阴影颜色 */
text-shadow: -1px -1px 1px #000,1px 1px 1px #fff;
}
</style>
</head>
<body>
<div>我是凸起的文字</div>
<div>我是凹下的文字</div>
</body>
</html>
推荐好课:CSS微课、HTML+CSS进阶实战