将表格对齐页面中心

时间:2010-12-14 00:38:01

标签: html css

我只想把表放在页面中间。任何帮助都会很棒。

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
        "http://www.w3.org/TR/html4/loose.dtd">

<html>
<head>
<title>Randy's first html web page !</title>
<style type="text/css">
body
{background-image:url('Koala.gif');} 
h1
{
text-align:center;
}
h2
{
text-align:center;
}
p
{
text-align:center;
font-size:200%;
color:#00fff0;
}
div
{
background-color:#efffff;
}
</style>
</head>
<h1> Hello Professor</h1>
<h2> By: Randy White</h2>
<P> I haven't done anything like this before.</P> 
<P>Seems to be ok</P>
<P><img src="Hydrangeas.jpg" width="150" height="100" alt="Hydrangeas.jpg"></P> 
<table border="1">
<tr>
<th>Month</th>
<th>Day</th>
<th>Year</th>
</tr>
<tr>
<td>December</td>
<td>1</td>
<td>2010</td>
</tr>
</table>
<a href="http://www.google.com">Visit Google!</a>
</body>
</html>

3 个答案:

答案 0 :(得分:28)

尝试:

table {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

或:

table {
    width: 200px;
    margin-left: auto;
    margin-right: auto;
}

BTW,这为所有表设置了这个。您可能希望在更具体的选择器上使用这些属性(例如table.someclass)。

答案 1 :(得分:4)

旧样式是align =“center”:

<table width="400" border="0" cellspacing="0" cellpadding="0" align="center">

答案 2 :(得分:2)

要在页面中间水平对齐表格,并使表格宽度自动适合,请尝试以下操作:

table {
    width: auto;
    margin-left: auto;
    margin-right: auto;
}