为什么我的边框没有显示,尽管我已经将边框样式 属性 设置为纯色?

Why is my Border not displaying although I have set the border-style property to solid?

我的页面上有一个 div,开始时不可见(显示:none),但有条件地变为可见(显示:块)。

它在html中是这样定义的,在aspx文件中,显示设置为none并给定边框:

<div class="row" id="gadsDiv" runat="server" style="display:none; border-style: solid; margin-top: 
                                                                                            -2px">
    <label style="font-weight: bold; padding-left: 4px; padding-right: 4px;">GENRES: </label> 
        <asp:Label runat="server" ID="lblGenres">None or Unknown</asp:Label><br />
    <label style="font-weight: bold; padding-left: 4px; padding-right: 4px;">ACTORS: </label> 
        <asp:Label runat="server" ID="lblActors">None or Unknown</asp:Label><br />
    <label style="font-weight: bold; padding-left: 4px; padding-right: 4px;">DIRECTOR[S]: </label> 
        <asp:Label runat="server" ID="lblDirectors">None or Unknown</asp:Label><br />
    <label style="font-weight: bold; padding-left: 4px; padding-right: 4px;">WRITER[S]: </label> 
        <asp:Label runat="server" ID="lblScreenwriters">None or Unknown</asp:Label>
</div>

有一种情况会导致显示 div,这是通过在代码隐藏(aspx.cs 文件)中执行此操作来实现的:

gadsDiv.Attributes.Add("style", "display:block;");
gadsDiv.Attributes.Add("style", "border-style:solid;");
gadsDiv.Attributes.Add("style", "margin-top: -2px;");

为了安全起见,我重新应用了border-style solid属性。

但是边框不显示(应该是在 GENRES, ACTORS, DIRECTORS, WRITERS 部分的周围):

是什么阻止了边框显示?

而不是使用 border-style: solid; 使用 border: 1px solid #000; 您可以根据需要更改 px 和颜色 (#000)