我正在尝试开发一个系统,使用户能够手动调整textarea和iframe的大小.我已经说明了我的意思:
<body>
<table width="100%">
<tr>
<!-- basically I want the user to be able to manually resize the width of the <td>'s -->
<td width="30%">
<textarea style="width:100%; height:100%;"></textarea>
</td>
<td width="70%">
<iframe style="width:100%; height:100%;" src=""></iframe>
</td>
</tr>
</table>
</body>
Run Code Online (Sandbox Code Playgroud)
任何帮助将非常感谢,谢谢:)