إنشاء ظل للصندوق بلغة CSS:
تتمثل بالبرمجة التالية:
box-shadow:x y blur color
نقوم بإنشاء ملف HTML ونكتب بداخله الكود التالي:
\[code\]
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="Style.css"/>
<title>border-radius</title>
</head>
<body>
<div class="box">
</div>
</body>
</html>
\[/code\]
ويكون ملف CSS يحوي البرمجة التالية:
\[code\]
.box {
background-color:#00F;
width:200px;
height:200px;
box-shadow:10px 10px 10px #000;
border-radius:30px 30px 30px 30px;
}
\[/code\]