Adding css box shadow
CSS really made adding shadow easy and fun! .my_shadow { -moz-box-shadow: 0 0 5px 5px #888; -webkit-box-shadow: 0 0 5px 5px #888; box-shadow: 0 0 5px 5px #888; } hello All you are adding is the following style code. Then assign the my_shadow class to your box. .my_shadow { -moz-box-shadow: 0 0 5px 5px #888; -webkit-box-shadow: 0 0 5px 5px#888; box-shadow: 0 0 5px 5px #888; } I remember back in the days it was painful to use images surrounding the box… haha, we have come a long way… ;) ...