Last active
January 30, 2024 17:25
-
-
Save begedin/5532870 to your computer and use it in GitHub Desktop.
Styling for an ASP.NET GridView
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.myGridClass { | |
width: 100%; | |
/*this will be the color of the odd row*/ | |
background-color: #fff; | |
margin: 5px 0 10px 0; | |
border: solid 1px #525252; | |
border-collapse:collapse; | |
} | |
/*data elements*/ | |
.myGridClass td { | |
padding: 2px; | |
border: solid 1px #c1c1c1; | |
color: #717171; | |
} | |
/*header elements*/ | |
.myGridClass th { | |
padding: 4px 2px; | |
color: #fff; | |
background: #424242; | |
border-left: solid 1px #525252; | |
font-size: 0.9em; | |
} | |
/*his will be the color of even row*/ | |
.myGridClass .myAltRowClass { background: #fcfcfc repeat-x top; } | |
/*and finally, we style the pager on the bottom*/ | |
.myGridClass .myPagerClass { background: #424242; } | |
.myGridClass .myPagerClass table { margin: 5px 0; } | |
.myGridClass .myPagerClass td { | |
border-width: 0; | |
padding: 0 6px; | |
border-left: solid 1px #666; | |
font-weight: bold; | |
color: #fff; | |
line-height: 12px; | |
} | |
.myGridClass .myPagerClass a { color: #666; text-decoration: none; } | |
.myGridClass .myPagerClass a:hover { color: #000; text-decoration: none; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I used it I liked it Thanks