/ Published in: CSS
Expand |
Embed | Plain Text
/* Generic Table ---------------------------------------------------------- */ table { width:100%; margin:20px 0; border-collapse:collapse; border-top:1px solid #ddd; border-left:1px solid #ddd; } table .heading { background:#666; color:#fff; text-transform:uppercase; text-align:center; } table th, table td { border-bottom:1px solid #ddd; border-right:1px solid #ddd; } table th { font-weight:bold; } table tr:nth-of-type(even) { background:#eee; } table .hover { background:#ccc; }
You need to login to post a comment.
