blog / 3D text with CSS

nordahl-3d-text
You could create 3D text with CSS by adding multple shadows to the text like this:

body{
	background:#373737;
}
h1{
	color: #373737;
	text-shadow: 0 0 5px #111,
	1px 1px 0 #777;
}
Tags:

This article was updated at 11:01 pm on November 10th, 2009 by Kenneth Dahlstrøm Nordahl

Comments

Leave a comment

*Required