html表的可见属性不起作用.
为什么他们有这个财产有缺陷?我不得不使用style =“visibility:hidden”来隐藏表.
请解释为什么我很好奇
这是我正在使用的代码.意图是将桌子整体隐藏起来,但它不会隐藏桌子或其中的控件
<table visible="false"> <tr> <td > <label>Pick the color for action needed and paste it on textBox</label> </td> <td> <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox> </td> <td> <asp:Button ID="Button1" runat="server" Text="Apply color" /> </td> </tr> </table>