网页中表格居中的问题
我是新手.
我做flash想放入表格,就是不居中,好象还不在表格里
代码入下:<html>
<head>
<title>888999</title>
</head>
<body bgcolor="9B9B9B" TEXT="White" LINK="Silver"
VLINK="Silver">
<table cellSpacing=0 cellPadding=0 width=780
align="center" border=0>
<capyion align="center"><img src="hy .bmp"></caption>
<tr align="center"><td valign=top>
<embed src="tiao.swf"; align="top" width="800" height="600"
quality="high" wmode="transparent" align="center"
style="position: absolute; left:0; top:0"></td>
</tr>
</table>
</body>
</html>
参考答案:<capyion>是不能放在
<table>
与<tr>之间的,
要么放在外面,要么放在单元格里!<td>
还有<embed>不要设置什么 style="position:absolute;left:0px;top:0px;"
你就是再怎么设置也是没有用的!
去掉这个设置,然后把<embed>所在的<td>设置align=center valign=top
align设置水平对齐方式,
valign 垂直对齐方式!
看看你怎么写的 align=top 还 align=center