0
<table width="1168px" height="315px" bgcolor="#eeeeee" style="position:absolute;  top:19px; margin-left:96px; margin-right:96px;" >

表格左对齐 96 像素,但它一直延伸到右侧的末尾!我没有为整个网页指定宽度。我做错了什么?谢谢。

4

3 回答 3

0

从样式中删除这些:

position:absolute;
top:19px;
margin-left:96px;
margin-right:96px;

并更改为:

width: 75%;
margin: auto;

另外,删除您的width属性。

于 2013-02-13T07:00:54.977 回答
0

这个问题是由你的宽度引起的。如果你改变它,你应该得到想要的结果。我建议您将其设为 % 而不是固定值。

于 2013-02-13T07:01:20.127 回答
0

尝试这个

<table width="500px" height="315px" bgcolor="#eeeeee" style="  top:19px; margin-left:auto; margin-right:auto;" >
于 2013-02-13T07:13:49.873 回答