代码示例:(标识:eg_css3_text-shadow_white)
<!DOCTYPE html>
<html>
<head>
<style>
h1 {
color:white;
text-shadow:2px 2px 4px #000000;
}
</style>
</head>
<body>

<h1>白色文本的阴影效果!</h1>

</body>
</html>
运行结果: