STYLING THE GRIDVIEW IN ASP.NET

STYLING THE GRIDVIEW IN ASP.NET – DESIGN 2

This is a continuation of my post on css for gridview control.

DESIGN 2

design 2 -4

DOWNLOAD SOURCE CODE

css code :

.mydatagrid
{
width: 80%;
border: solid 2px black;
min-width: 80%;
}
.header
{
background-color: #000;
font-family: Arial;
color: White;
height: 25px;
text-align: center;
font-size: 16px;
}

.rows
{
background-color: #fff;
font-family: Arial;
font-size: 14px;
color: #000;
min-height: 25px;
text-align: left;
}
.rows:hover
{
background-color: #5badff;
color: #fff;
}

.mydatagrid a /** FOR THE PAGING ICONS **/
{
background-color: Transparent;
padding: 5px 5px 5px 5px;
color: #fff;
text-decoration: none;
font-weight: bold;
}

.mydatagrid a:hover /** FOR THE PAGING ICONS HOVER STYLES**/
{
background-color: #000;
color: #fff;
}
.mydatagrid span /** FOR THE PAGING ICONS CURRENT PAGE INDICATOR **/
{
background-color: #fff;
color: #000;
padding: 5px 5px 5px 5px;
}
.pager
{
background-color: #5badff;
font-family: Arial;
color: White;
height: 30px;
text-align: left;
}

.mydatagrid td
{
padding: 5px;
}
.mydatagrid th
{
padding: 5px;
}

Here’s a quick link for other designs :

Design 1design 1 -5

Design 3
design 3 -4

Design 4

images

Design 5
gridview 5-2


1 thought on “STYLING THE GRIDVIEW IN ASP.NET”

  1. Pingback: STYLING THE GRIDVIEW IN ASP.NET - ParallelCodes

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.