Three column layout with top bar : three Columns « Layout « HTML / CSS






Three column layout with top bar

  

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <title>CSS Positioning Example</title>
<style type='text/css'>
body{
  font-family: Arial,sans-serif;
  color: #333333;
  margin: 0px;
  padding: 0px;
  background-color: #cccccc;}

#page{
  position:absolute;
  top: 10px;
  left:10px;
  width:800px;
  background-color: #ffffff;}

#masthead{border-bottom:1px solid #cccccc;}

#sideNav{
  float: left;
  width:150px;
  background-color: #F5f7f7;
  border-bottom: 1px solid #cccccc;}

#sideRight{
  float: right;
  width:150px;
  padding:0px;
  background-color: #F5f7f7;
  border-bottom: 1px solid #cccccc;}

#content{
  margin:0px 150px 0px 150px;
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;}

.item{
  padding:10px;
  min-height: 75px;
  height: 75px;}

#sideNav a:link, #sideNav a:visited{
  display:block;
  padding:5px;}

#sideNav a:hover {background-color:#d6d6d6;}
</style>


</head>
<body> 
<div id="page"> 
  <div id="masthead"> 
    <h2>Masthead</h2> 
  </div> 
  <div id="sideNav"> 
    <a href="#">Left link one</a>
    <a href="#">Left link two</a>
    <a href="#">Left link three</a>
    <a href="#">Left link four</a>
  </div> 
  <div id="sideRight"> 
     Lorem ipsum dolor sit amet.
  </div> 
  <div id="content"> 
    <div class="item"> 
      <h3>Item One</h3> 
      <p>
       Lorem ipsum dolor sit amet.
      </p>
    </div>
    <div class="item"> 
      <h3>Item Two</h3> 
      <p>
       Lorem ipsum dolor sit amet.
      </p>
    </div>
  </div> 
</div> 
</body>
</html>

   
    
  








Related examples in the same category

1.Header and three columns under
2.Column left, column main, column right
3.Three columns with navigation on the right
4.Use left property to control the column position
5.three column layout with header and footer
6.Three column layout with absolute position
7.Use absolute position to create header and three column under it
8.Use margin to layout the center column
9.Three columns, left and right column has abolute position
10.3 columns, all fluid
11.3 column
12.3 Column fluid layout: 50% column, 2 x 25% columns
13.3 column fluid layout - 33% columns
14.3 Column fluid layout - 25% side columns
15.Three Column Elastic Layout
16.Floated Three Column Layout
17.Three Column Hybrid Layout
18.Three Column Liquid Layout
19.Floated Three Column Layout 2
20.Faux Three Column Liquid Layout
21.Three-Column Layout Demonstration with Javascript
22.Three-Column Layout Demonstration with fixed width
23.Three-Column Layout without footer
24.Three-Column Layout with absolute position
25.Three columns: all floating from left
26.Header and sub header with three columns
27.Three columns with header and footer
28.Three columns with no header and footer
29.Three column layout with sub sections
30.float left and right three columns
31.Top and left navigational bar and three columns
32.Three Column Layout in CSS
33.Three Column Design Using HTML with Table
34.Basic 3-Column Sample Page
35.Three column with top section
36.Three column layout with two sidebar on the right
37.Three column layout with two column sidebar on the left
38.Three column layout
39.Fixed Three-Column Over Four-Column Layout
40.Three column layout with content in the middle
41.Three column layout with left navigation bar
42.Three column layout with left menu bar
43.Three column daliy post layout
44.Three column layout
45.Column span for three column layout
46.Three Column Layout in CSS 2
47.Three-column layout with various style illustration