Skip to content

Instantly share code, notes, and snippets.

@AliMD
Created July 7, 2013 07:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AliMD/5942671 to your computer and use it in GitHub Desktop.
Save AliMD/5942671 to your computer and use it in GitHub Desktop.
Very Basic Table Layout
.container {
width: 900px;
margin: 0 auto;
}
.header{
height: 80px;
}
.leftpanel{
width: 150px;
}
.mainpanel{
height: 600px;
}
.rightpanel{
width: 150px;
}
.footer{
height: 70px;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>my 1st page</title>
</head>
<body>
<table border="1" class="container">
<tr>
<td class="header" colspan="3"></td>
</tr>
<tr>
<td class="leftpanel"></td>
<td class="mainpanel"></td>
<td class="rightpanel"></td>
</tr>
<tr>
<td class="footer" colspan="3"></td>
</tr>
</table>
</body>
</html>
@AliMD
Copy link
Author

AliMD commented Jul 7, 2013

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment