Kod · HTML
<!DOCTYPE HTML>
<html>
<head>
<title>Border</title>
<style>
body{
background:#ccc;
}
.test{
background:#739e41;
padding:10px;
border-radius:5px;
}
.test1{
background:#fff;
border-radius:5px;
box-shadow:0px 10px 10px 1px #444;
}
.test1:hover{
box-shadow:0px 10px 10px 1px #000;
}
</style>
</head>
<body>
<div class="test1">
<div class="test">
<br/>
</div>
<br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
</div>
</body>
</html>