2010.06.24

CSS Snippet for Drop Shadow

By underblob @ 6:04pm — Categories: Design, HTTP, Tech
Tags: , , , ,

Use this snippet to add drop shadows to elements for Mozilla, Webkit, and browsers that support CSS3:

	-moz-box-shadow: 1px 2px 3px #666;
	-webkit-box-shadow: 1px 2px 3px #666;
	box-shadow: 1px 2px 3px #666;
	/* box-shadow: X Y blur hex; */

CSS Snippet for Rounded Corners

By underblob @ 5:54pm — Categories: Design, HTTP, Tech
Tags: , , , , ,

Use this CSS to apply rounded corners to Mozilla, Webkit, and browsers that support CSS3:

	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;