CSS HTML Quick Look

Add this CSS code to the top of a document to get a quick understanding of how an HTML page is structured. All TABLE tags will have a red border and a three pixel margin added to them. TD tags will have a dotted purple border and will have two pixels of padding.

<style type="text/css">

/* temporary styles */

table {border: 2px solid red; margin: 3px;}

td {border: 1px dotted purple; padding: 2px;}

</style>