日期:2014-05-17 浏览次数:20886 次
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <style type="text/css"> div.center { text-align:center; } </style> <title>center测试</title> </head> <body> <div class="center"> <table border="1"> <tr> <td>一</td> <td>二三</td> </tr> <tr> <td>四五六</td> <td>七八九十</td> </tr> </table> </div> </body> </html>
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <style type="text/css"> * { margin: 0px auto; padding: 0px; } </style> <title>center测试</title> </head> <body> <div class="center"> <table border="1"> <tr> <td>一</td> <td>二三</td> </tr> <tr> <td>四五六</td> <td>七八九十</td> </tr> </table> </div> </body> </html>