Block:

Block style tags are used to mainpulate the text within a box, table or other html element.

The following example shows how Block is used in a table.

<html>
<head>
<style type="text/css">
.block
{
word-spacing: 100px ;
vertical-align: middle
}
</style>
</head>

<body bgcolor="#FFFFFF" text="#000000">
<table width="336" border="2" cellspacing="0" cellpadding="0" height="213" class="block">
<tr>
<td>This is some text in a table with a block style applied to it.</td>
</tr>
</table>
</body>
</html>

Click for

If more information is necessay they will be added with the next update.

Like I said before there are many way's to use css to enhance your web site design. Please use the resources and tools to help you achieve the site you desire. Also remember that css can make updating or changing your site much easier and quicker than standard html by using external sheets and only having to change one or two things instead of changing the same thing on all your pages. Especially if your site contains many pages.