Created
April 1, 2013 15:27
-
-
Save musicm122/5285565 to your computer and use it in GitHub Desktop.
Cell_Padding_and_Cell_Spacing in css
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
.UserInputTable table { | |
width: 100%; | |
border: 0; | |
border-spacing:0; | |
border-collapse:collapse; | |
} | |
.UserInputTable table td, .UserInputTable table td { | |
padding:5; | |
} | |
.UserInputTable table tr:nth-child(odd){ | |
background-color:#F2F2F2; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment