The table tag for the table containing this text looks like this:

<table id="wrapper">

Note that it expands vertically even though it is rendered in standards compliance mode because it has the following CSS applied to it:

html, body, #wrapper {
	height:100%;
	margin: 0;
	padding: 0;
	border: none;
	text-align: center;
}
#wrapper {
	background-color: #ccccff;
	margin: 0 auto;
	text-align: left;
	vertical-align: middle;
	width: 400px;
}

Validate the HTML of page
Validate the CSS of page
Close this window