博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
asp.net css html5,asp.net – 使用纯CSS定义asp:GridView的全局网站样式(不使用VS Skins)...
阅读量:6360 次
发布时间:2019-06-23

本文共 776 字,大约阅读时间需要 2 分钟。

定义样式表并在某处设置这些样式:

/**

* GRIDVIEW STYLES

**/

.gridview {

font-family:"arial";

background-color:#FFFFFF;

width: 100%;

font-size: small;

}

.gridview th {

background: #7AC142;

padding: 5px;

font-size:small;

}

.gridview th a{

color: #003300;

text-decoration: none;

}

.gridview th a:hover{

color: #003300;

text-decoration: underline;

}

.gridview td {

background: #D9EDC9;

color: #333333;

font: small "arial";

padding: 4px;

}

.gridview tr.even td {

background: #FFFFFF;

}

.gridview td a{

color: #003300;

font: bold small "arial";

padding: 2px;

text-decoration: none;

}

.gridview td a:hover {

color: red;

font-weight: bold;

text-decoration:underline;

}

然后需要设置gridview以利用CssClass和AlternatingRowStyle-CssClass来利用这些:

runat="server"

CssClass="gridview"

AlternatingRowStyle-CssClass="even">

转载地址:http://bbima.baihongyu.com/

你可能感兴趣的文章
你好,C++(16)用表达式表达我们的设计意图——4.1 用操作符对数据进行运算...
查看>>
jdbc 简单连接
查看>>
nasm预处理器(2)
查看>>
nginx web服务理论与实战
查看>>
java 库存 进销存 商户 多用户管理系统 SSM springmvc 项目源码
查看>>
你对position了解有多深?看完这2道有意思的题你就有底了...
查看>>
WebSocket跨域问题解决
查看>>
Ubuntu 16.04安装Nginx
查看>>
flutter 教程(一)flutter介绍
查看>>
CSS面试题目及答案
查看>>
Spring自定义注解从入门到精通
查看>>
笔记本触摸板滑动事件导致连滑的解决方式
查看>>
Runtime 学习:消息传递
查看>>
你了解BFC吗?
查看>>
linux ssh tunnel使用
查看>>
十、详解FFplay音视频同步
查看>>
自定义元素探秘及构建可复用组件最佳实践
查看>>
自定义Linux service脚本
查看>>
ICMP
查看>>
CentOS6 手动编译升级 gcc
查看>>