CSS - View Table Layout

home ~ tools ~ song quotes ~ podcast ~ song lyric trivia ~ docs ~ links ~ archives ~ search ~ lycii ~ mail
internetbumperstickers.com
Thanks to Eric Meyer for this idea on getting started converting table based layout to CSS.
<style type="text/css">
/* temporary style sheet */
table {
	border: 2px solid red;
	margin: 3px;
}

td {
	border: 1px dotted purple;
	padding: 2px;
}
</style>