Skip to content

Instantly share code, notes, and snippets.

@brajeshwar
Created October 9, 2010 07:29
Show Gist options
  • Save brajeshwar/617990 to your computer and use it in GitHub Desktop.
Save brajeshwar/617990 to your computer and use it in GitHub Desktop.
// CSS Code
#data {
float: left;
margin-left: 10px;
}
#data th {
text-align: center;
font-weight: bold;
}
#data td, #data th {
padding: 2px;
}
// SASS Code
=table-scaffolding
th
text-align: center
font-weight: bold
td, th
padding: 2px
=left(!dist)
float: left
margin-left = !dist
#data
+left(10px)
+table-scaffolding
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment