我有 edit.aspx 页面:
<body style="background-color: rgb(225, 255, 255)">
<form id="form1" runat="server">
<div>
<table style="width: 100%">
<tr>
<td>
<table style="width: 100%">
<tr>
<td style="width: 1%" align="right">
<span id="LabelCapFileName" style="white-space:nowrap">File name:</span>
</td>
<td>
<span id="LabelFileName" style="font-weight:bold;">About.asp</span>
</td>
<td align="right">
<asp:Button ID="btnSave" runat="server" Text="Lưu" />
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<div style=" position: absolute; top: 45px; bottom: 5px;
left: 5px; right: 5px">
<textarea id="code" name="code" runat="server" wrap="off" style=" width:99%; height:99%" >
</textarea>
</div>
</td>
</tr>
</table>
</div>
</form>
即使 Textarea 有style=" width:99%; height:99%"
,它仍然在左屏幕上显示很小。
我希望文本区域自动显示完整的 Chrome 浏览器,例如:
我不知道是什么让 textarea 显示为错误的方式。我上面的代码有什么错误吗,我需要你的意见来完成我的项目。帮助!!