Examples for box shadow effects (outset & inset)
 
 

Box shadow effect – Outset

#box {
box-shadow:5px 5px 5px #333;
background:#eee;
padding:25px;
border-radius:5px;
}

 
 

#box {
box-shadow:0px 0px 30px #333;
background:#eee;
padding:25px;
border-radius:5px;
}

 
 

Box shadow effect – Inset

#box {
box-shadow:inset 2px 2px 2px #333;
background:#eee;
padding:25px;
border-radius:5px;
}

 
 

#box {
box-shadow:inset 0px 0px 30px #333;
background:#eee;
padding:25px;
border-radius:5px;
}

 
 

Shares
Share This