如何让框架自动适应不同分辨率?
------解决方案--------------------------------------------------------
写JavaScript进行控制,或是是使用百分比设计框架.
------解决方案--------------------------------------------------------
使用 百分比 定义 高度 宽度
------解决方案--------------------------------------------------------
楼上 的 在框架中好像 不能用 百分比吧
------解决方案--------------------------------------------------------
<table style= "height:100%; width: 100% " align= "center ">
<tr> <td> 123 </td> </tr>
</table>
------解决方案--------------------------------------------------------
百分比 ! <table style= "height:90%; width: 90% " align= "center ">
<tr> <td> 左边 </td>
<td> 右侧 </td>
</tr>
</table>
------解决方案--------------------------------------------------------
<frameset cols= "10%,* " frameborder= "no " framespacing= "0 "> ..