将 asp 标签放在另一个标签下,中间不要 space
Put an asp label under another without space between them
在一个列中,我有一个 div 容器,其中包含两个 asp 标签,一个在另一个下面。
<td>
<div>
<h2><asp:Label runat="server" ID="lblEmployeeFullname" Text="Claudie"></asp:Label></h2>
<asp:Label runat="server" ID="lblIdEmployee" Text="34343d-dfadfsf-3433"></asp:Label>
</div>
</td>
标签之间有空白 space,我正在尝试将其删除。
下面是设计模式的屏幕截图。
我希望他们在一起,中间没有任何space。
我该怎么做?
这是因为 'h2' 标签有其自己的浏览器特定边距 top/bottom 样式。
您可以像这样禁用它:
<h2 style="margin-top:0;margin-bottom:0;">...</h2>
<h2 style="margin-top:0;margin-bottom:0;"><asp:Label runat="server" ID="lblEmployeeFullname" Text="Claudie"></asp:Label></h2>
<asp:Label runat="server" ID="lblIdEmployee" Text="34343d-dfadfsf-3433"></asp:Label>
在一个列中,我有一个 div 容器,其中包含两个 asp 标签,一个在另一个下面。
<td>
<div>
<h2><asp:Label runat="server" ID="lblEmployeeFullname" Text="Claudie"></asp:Label></h2>
<asp:Label runat="server" ID="lblIdEmployee" Text="34343d-dfadfsf-3433"></asp:Label>
</div>
</td>
标签之间有空白 space,我正在尝试将其删除。 下面是设计模式的屏幕截图。
我希望他们在一起,中间没有任何space。
我该怎么做?
这是因为 'h2' 标签有其自己的浏览器特定边距 top/bottom 样式。
您可以像这样禁用它:
<h2 style="margin-top:0;margin-bottom:0;">...</h2>
<h2 style="margin-top:0;margin-bottom:0;"><asp:Label runat="server" ID="lblEmployeeFullname" Text="Claudie"></asp:Label></h2>
<asp:Label runat="server" ID="lblIdEmployee" Text="34343d-dfadfsf-3433"></asp:Label>