<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>文字阴影</title>
<style>
#box{
font-size: 30px;
/第一个值为 X轴偏移量 Y轴偏移量 阴影模糊距离 阴影颜色/
text-shadow: 5px 5px 5px pink,10px 10px 10px blue;
}
</style>
</head>
<body>
<div id="box">
采蘑菇的小蘑菇
</div>
</body>
</html>