Skip to content

Instantly share code, notes, and snippets.

@donpdonp
Created August 9, 2010 22:26
Show Gist options
  • Save donpdonp/516238 to your computer and use it in GitHub Desktop.
Save donpdonp/516238 to your computer and use it in GitHub Desktop.
## HTML
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="dashboard.css" />
</head>
<body>
<header>
<span class="">Don's Dashboard </span>
</header>
<section class="dashboard">
<div class="dashcell">
Cell #1
</div>
<div class="dashcell">
Cell #2
</div>
<div class="dashcell">
Cell #3
</div>
<br clear="all"/>
<div class="dashcell">
Cell #4
</div>
<div class="dashcell">
Cell #5
</div>
<div class="dashcell">
Cell #6
</div>
</section>
</body>
</html>
## CSS
body {
width: 90%;
margin-left: auto;
margin-right: auto;
}
header {
text-align: center;
}
.dashboard {
width: 80%;
margin-left: auto;
margin-right: auto;
}
.dashcell {
width: 33%;
margin-left: auto;
margin-right: auto;
float: left;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment