Text Shadow CSS Test

P {
	background: white;
	color: black;
	}

P.one	{
	text-shadow: 5pt 5pt red;
	}

P.two	{
	text-shadow: red 5pt 5pt;
	}

P.three	{
	text-shadow: 5pt 5pt 3pt red;
	}

P.four	{
	text-shadow: red 5pt 5pt 3pt;
	} 

This paragraph should have a red shadow that is displaced 5 points down and 5 points to the right.

This paragraph should have a red shadow that is displaced 5 points down and 5 points to the right.

This paragraph should have a red shadow that is displaced 5 points down and 5 points to the right. It should have a 3 point blur radius.

This paragraph should have a red shadow that is displaced 5 points down and 5 points to the right. It should have a 3 point blur radius.


Valid HTML 4.0!

(Back to CSS Testing Information, David Baron)

LDB, dbaron@dbaron.org