css3实现了文本的凹凸效果,所谓的凹凸效果,就是那种具有立体凿刻的感觉。
代码实例如下:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>web前端开发学习Q-q-u-n: 767273102 ,分享开发工具,零基础,进阶视频教程,希望新手少走弯路</title>
<style>
body {
background-color: #808080;
font: bold 50px "microsoft yahei";
}
div {
margin: 30px;
color: #808080;
text-align: center;
}
.to {
text-shadow: 1px 1px 1px black,-1px -1px 1px white;
}
.ao {
text-shadow: 1px 1px 1px white, -1px -1px 1px black;
}
</style>
</head>
<body>
<div class="to">人的一生大多是有900多个月</div>
<div class="ao">目前我的愿望是:下班都能看到你煮好饭菜等我</div>
</body>
</html>