为什么无法靠右显示
<table>
<tr><td style="float:right">选择上传文件:</td><td><form name="uploadform" method="post" ENCTYPE="multipart/form-data"><!--multipart/form-data二进制 -->
<input name="file1" size="50" type="file" />
<input name="upload" type="submit" style="height:20px;width:80px;" value="上传" onclick="checkFile()">
</form></td></tr>
<tr><td style="float:right">进度:</td><td><iframe id="iProgress" marginwidth="0" marginheight="0" frameborder="0" src="" width="320" height="30" scrolling="no"></iframe></td></tr>
</table>
我想让 选择上传文件 和 进度 在TD中对是靠右,火狐可以,IE6不行。
------解决方案--------------------<table align="right">
<tr><td style="float:right">选择上传文件:</td><td><form name="uploadform" method="post" ENCTYPE="multipart/form-data"><!--multipart/form-data二进制 -->
<input name="file1" size="50" type="file" />
<input name="upload" type="submit" style="height:20px;width:80px;" value="上传" onclick="checkFile()">
</form></td></tr>
<tr><td style="float:right">进度:</td><td><iframe id="iProgress" marginwidth="0" marginheight="0" frameborder="0" src="" width="320" height="30" scrolling="no"></iframe></td></tr>
</table>
------解决方案--------------------
------解决方案--------------------<style type="text/css">
.aa{
text-align:right;}
</style>
<table>
<tr>
<td class ="aa">选择上传文件:</td>
<td>
<form name="uploadform" method="post" ENCTYPE="multipart/form-data"><!--multipart/form-data二进制 -->
<input name="file1" size="50" type="file" />
<input name="upload" type="submit" style="height:20px;width:80px;" value="上传" onclick="checkFile()">
</form>
</td>
</tr>
<tr>
<td class="aa">进度:</td>
<td><iframe id="iProgress" marginwidth="0" marginheight="0" frameborder="0" src="" width="320" height="30" scrolling="no"></iframe></td></tr>
</table>
------解决方案--------------------补充一下,float:right不是用来对文本样式限制的。。。。