zoukankan      html  css  js  c++  java
  • Gridview样式的CSS控制

    页面代码:

    01.<asp:GridView ID="gvCustomres" runat="server"  
    02.    DataSourceID="customresDataSource"    
    03.    AutoGenerateColumns="False"  
    04.    GridLines="None"  
    05.    AllowPaging="true"  
    06.    CssClass="mGrid"  
    07.    PagerStyle-CssClass="pgr"  
    08.    AlternatingRowStyle-CssClass="alt">  
    09.    <Columns>  
    10.        <asp:BoundField DataField="CompanyName" HeaderText="Company Name" />  
    11.        <asp:BoundField DataField="ContactName" HeaderText="Contact Name" />  
    12.        <asp:BoundField DataField="ContactTitle" HeaderText="Contact Title" />  
    13.        <asp:BoundField DataField="Address" HeaderText="Address" />  
    14.        <asp:BoundField DataField="City" HeaderText="City" />  
    15.        <asp:BoundField DataField="Country" HeaderText="Country" />  
    16.    </Columns>  
    17.</asp:GridView>  
    18.<asp:XmlDataSource ID="customresDataSource" runat="server" DataFile="~/App_Data/data.xml"></asp:XmlDataSource> 

    css代码

    01..mGrid {    
    02.     100%;    
    03.    background-color: #fff;    
    04.    margin: 5px 0 10px 0;    
    05.    border: solid 1px #525252;    
    06.    border-collapse:collapse;    
    07.}   
    08..mGrid td {    
    09.    padding: 2px;    
    10.    border: solid 1px #c1c1c1;    
    11.    color: #717171;    
    12.}   
    13..mGrid th {    
    14.    padding: 4px 2px;    
    15.    color: #fff;    
    16.    background: #424242 url(grd_head.png) repeat-x top;    
    17.    border-left: solid 1px #525252;    
    18.    font-size: 0.9em;    
    19.}   
    20..mGrid .alt { background: #fcfcfc url(grd_alt.png) repeat-x top; }   
    21..mGrid .pgr { background: #424242 url(grd_pgr.png) repeat-x top; }   
    22..mGrid .pgr table { margin: 5px 0; }   
    23..mGrid .pgr td {    
    24.    border- 0;    
    25.    padding: 0 6px;    
    26.    border-left: solid 1px #666;    
    27.    font-weight: bold;    
    28.    color: #fff;    
    29.    line-height: 12px;    
    30. }      
    31..mGrid .pgr a { color: #666; text-decoration: none; }   
    32..mGrid .pgr a:hover { color: #000; text-decoration: none; }  
  • 相关阅读:
    Sql的基础知识(一)
    Django--分页功能
    django--基础操作
    CSRF攻击与防御(转载)
    谈谈CSRF
    浅谈Dom遍历
    node50行代码实现壁纸爬取
    node解决request中文乱码问题
    数组去重方法(转载)
    淘宝dns解析错误导致首页打不开
  • 原文地址:https://www.cnblogs.com/yangwujun/p/5311141.html
Copyright © 2011-2022 走看看