Soft Edges using CSS?
Another option is to use one of my personal favorite CSS tools: box-shadow. A box shadow is really a drop-shadow on the node. It looks like this: -moz-box-shadow: 1px 2px 3px rgba(0,0,0,.5); -webkit-box-shadow: 1px 2px 3px rgba(0,0,0,.5); box-shadow: 1px 2px 3px rgba(0,0,0,.5); The arguments are: 1px: Horizontal offset of the effect. Positive numbers shift it … Read more