Skip to content

Instantly share code, notes, and snippets.

@umair-me
Created November 14, 2013 13:43
Show Gist options
  • Save umair-me/7466971 to your computer and use it in GitHub Desktop.
Save umair-me/7466971 to your computer and use it in GitHub Desktop.
/*Simple table grid style:*/
table.gridtable {
font-family: verdana,arial,sans-serif;
font-size:11px;
color:#333333;
border-width: 1px;
border-color: #666666;
border-collapse: collapse;
}
table.gridtable th {
border-width: 1px;
padding: 8px;
border-style: solid;
border-color: #666666;
background-color: #dedede;
}
table.gridtable td {
border-width: 1px;
padding: 8px;
border-style: solid;
border-color: #666666;
background-color: #ffffff;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment