ความคิดเห็น: ใช้ shadow ของ HTML5 เพื่อให้ได้เอฟเฟกต์เบลอ แต่เอฟเฟกต์เบลอ รหัสเฉพาะสำหรับการซ้อนทับเงามีดังนี้ เพื่อนที่ต้องการเรียนรู้สามารถเรียนรู้ได้ ฉันหวังว่ามันจะเป็นประโยชน์สำหรับทุกคนในการเรียนรู้ HTML5
<! doctype html public "-// w3c // dtd xhtml 1.0 transitional // en"
"http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns = "http://www.w3.org/1999/xhtml">
<head>
<title> </title>
<style type = "text/css">
/*<! [cdata [*/
#ข้อความ
-
Text-Shadow: 2px 2px 0px Orange;
-
#ข้อความ 1
-
Text-Shadow: 2px 2px 5px Orange;
-
#text2
-
Text-Shadow: 2px 2px 5px Orange, -2px 2px 5px Green;
-
-
</style>
</head>
<body>
<div>
ไม่มีเอฟเฟกต์เบลอ
</div>
<div>
มีเอฟเฟกต์เบลอ
</div>
<div>
เงาซ้อนทับ
</div>
</body>
</html>