ASP Gridview - 删除内行行以外的所有边框

时间:2016-01-12 12:52:31

标签: asp.net gridview border

我正在尝试删除除了我的asp网格视图的内部水平行线以外的所有边框,这是我的ASP到目前为止:

<asp:GridView ShowHeader="true" ID="MeetingSumaryGridview1" DataKeyNames="IdInsert, Summary"
                                        runat="server" AutoGenerateColumns="false" GridLines="Horizontal" BorderStyle="solid" BorderWidth="1px" DataSourceID="MeetingSumaryDataSource1"
                                        Style="font-size: 0.8em;" Width="100%">
                                        <Columns>...

我浏览了网页,但对此问题没有运气,对此有任何帮助或建议。

提前谢谢。

1 个答案:

答案 0 :(得分:1)

这是你在找什么?

以下是从此answer编辑的一些CSS:

table {
    border-collapse: collapse;
}
table td, table th {
    border: 1px solid black;
}
table tr:first-child th {
    border-top: 0;
}
table tr:last-child td {
    border-bottom: 0;
}
table tr td,
table tr th {
    border-left: 0;
}
table tr td,
table tr th  {
    border-right: 0;
}

只需将其分配给GridView的CssStyle

即可