<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>CSS Test: Aligning Table Data (cell data is horizontally aligned)</title> <link rel="author" title="Microsoft" href="http://www.microsoft.com/"> <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#tables-intro"> <meta name="flags" content=""> <meta name="assert" content="Cell data can be horizontally aligned."> <style type="text/css"> table { border: solid; } td { height: 10em; text-align: center; width: 10em; } </style> </head> <body> <p>Test passes if the "Filler Text" is horizontally centered within the box below.</p> <table> <tr> <td>Filler Text</td> </tr> </table> </body> </html>