Click to See Complete Forum and Search --> : CSS 1 column shadow effect


t1g3r
03-14-2007, 07:27 AM
Hi!

I'm creating a new website. I would like to know how to create a css layout with 1 centered column which has a shadow effect on the borders. Something similar to this:

http://www.csszengarden.com/cssfile=/196/196.css&page=0

Thanks
Will

KDLA
03-14-2007, 09:30 AM
You just need to create an image and apply it to a container div, like this:

body {text-align: center;}
#wrapper {margin: 0 auto; width: 750px; background: #fff url(shadow.gif) repeat-y; text-align: left;}

KDLA