asp.net gridview好看的css
时间: 2023-07-25 19:38:51 浏览: 243
漂亮的GridView样式
4星 · 用户满意度95%
以下是一个简单的 ASP.NET GridView 界面的 CSS 样式,你可以根据自己的需求进行修改和优化。
```css
/* 设置表格样式 */
table {
border-collapse: collapse;
width: 100%;
max-width: 100%;
margin-bottom: 1rem;
background-color: transparent;
color: #212529;
}
/* 设置表格头部样式 */
thead {
background-color: #007bff;
color: #fff;
}
/* 设置表格头部单元格样式 */
th {
font-weight: 500;
text-align: left;
padding: .75rem;
vertical-align: bottom;
border-bottom: 2px solid #dee2e6;
}
/* 设置表格主体单元格样式 */
td {
padding: .75rem;
vertical-align: top;
border-top: 1px solid #dee2e6;
}
/* 设置奇数行的背景色 */
tbody tr:nth-of-type(odd) {
background-color: rgba(0,0,0,.05);
}
/* 设置鼠标悬停时的背景色 */
tbody tr:hover {
background-color: rgba(0,0,0,.075);
}
```
你可以将以上样式添加到你的页面 CSS 文件中,然后在 GridView 控件中设置 CssClass 属性为你定义的样式类名即可。如下:
```aspx
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="True" CssClass="my-table-style">
</asp:GridView>
```
希望能帮到你!
阅读全文