<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>文字陰影</title>
<style>
#box{
font-size: 30px;
/第一個(gè)值為 X軸偏移量 Y軸偏移量 陰影模糊距離 陰影顏色/
text-shadow: 5px 5px 5px pink,10px 10px 10px blue;
}
</style>
</head>
<body>
<div id="box">
采蘑菇的小蘑菇
</div>
</body>
</html>