现在有一个blue.css文件,里面引入了@import url('global.css');blue.css里面定义了:
.tblClass th{
background:url('img/bgTblTitle.gif') no-repeat right top;
}global.css里面定义了:
.tblClass{
width:100%;color:#333;background:white;
}
.tblClass th{
height:26px;line-height:20px;padding:0 10px;
}现在我想在网页的datagrid上调用blue.css里面定义th,让背景为一副图片。
所以让datagrid的HeaderStyle CssClass="th",然而缺没有效果。请各位指教。