gpt4 book ai didi

html - 边框不延伸 - css

转载 作者:太空宇宙 更新时间:2023-11-03 20:47:48 26 4
gpt4 key购买 nike

底部边框只到文本框的末尾。我在 visual studio 2010 工作。相同的代码在另一台 PC 上工作正常。为什么

<div style="clear: both; max-width: 2400px">
<table style="border: 1px solid gray" width="100%">
<tr>
<td width="20%">
NAME
</td>
<td width="40%">
<asp:TextBox ID="TextBox1" runat="server" Width="98%"></asp:TextBox>
</td>
<td width="40%">
</td>
</tr>
<tr>
<td>
AGE
</td>
<td>
<asp:TextBox ID="TextBox2" runat="server" Width="98%"></asp:TextBox>
</td>
</tr>
</table>
</div>

enter image description here

最佳答案

您缺少第二行中的第三个 TD。插入它,它就会出现。

<table style="border: 1px solid gray" width="100%">
<tr>
<td width="20%">
NAME
</td>
<td width="40%">
<asp:TextBox ID="TextBox1" runat="server" Width="98%"></asp:TextBox>
</td>
<td width="40%">
</td>
</tr>
<tr>
<td>
AGE
</td>
<td>
<asp:TextBox ID="TextBox2" runat="server" Width="98%"></asp:TextBox>
</td>
<td>
</td>
</tr>
</table>

关于html - 边框不延伸 - css,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18891705/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com