how to create shadow to box using css

how to create shadow to box using css

This post helps to create shadow to the box or div , It will looks like good we can use it to the divs and images. This is very simple try the following codes shows below.

shadow-to-box

index.php

<!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" />
<title>crate shadow to box</title>

<style>

.san
{
width:500px;
height:200px;
background-color:#EAEAEA;
border:1px solid #909090;
box-shadow:5px 5px 10px;
}

</style>
</head>

<body>

<div class="san"> This is shadow box</div>


</body>
</html>



Post a Comment

0 Comments