Hanging Indents with CSS

Posted in case anyone else out there is having trouble figuring out a good way to do it:

.hang {
	text-align: left;
	text-indent: -3em;
	margin-left: 3em;
}

Comments are closed.