将一个 asp 标签放在另一个标签下,它们之间没有空格

时间:2021-07-20 17:16:43

标签: asp.net webforms 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>

标签之间有一个空格,我正在尝试将其删除。 下面是设计模式下的屏幕截图。

enter image description here

我希望他们在一起,中间没有任何空间。

我该怎么做?

1 个答案:

答案 0 :(得分:1)

这是因为“h2”标签有自己的浏览器特定的页边距顶部/底部样式。

您可以像这样禁用它:

# Extract the relevant information
# from the data.
id_cols <- bind_cols(
        var = c("lab", "malig", "diag"),
        Heat_BT[1:3,-c(1,2)] 
) %>% group_by(var) %>% pivot_longer(
        cols = -"var", names_to = "id"
) %>% pivot_wider(
        names_from = var,
)


# Remove these identifiers;
Heat_BT <- Heat_BT[-(1:4),]

# Pivot the table;
pivoted_table <- Heat_BT[,-1] %>% pivot_longer(
        cols = -"gene",
        names_to = "id"
) %>% pivot_wider(
        names_from = gene,
) %>% mutate(
        across(.cols = -"id", as.numeric)
)

# Join with the ID colums
left_join(
        id_cols,
        pivoted_table
)
相关问题