Nested Layout Example : Size and Layout « Layout « HTML / CSS






Nested Layout Example

 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US">
  <head>
    <title>Nested Layout Example</title>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
<style type='text/css'>

#nav, #extras {
  display: table-cell;
  width: 100px;
  padding: 1em;
  border: 1px solid red;
}
#content {
  display: table-cell;
  padding: 1em;
  border: 1px solid red;
}
.row {
  display: table-row;
}
.inner-content {
  display: table-cell;
  width: 100px;
  height: 100px;
  padding: 1em;
  border: 1px dashed #666;
}
</style>

  </head>
  <body>
    <div id="nav">LEFT</div>
    <div id="content">
      <div class="row">
        <div class="inner-content">A</div>
        <div class="inner-content">B</div>
      </div>
      <div class="row">
        <div class="inner-content">C</div>
        <div class="inner-content">D</div>
      </div>
    </div>
    <div id="extras">RIGHT</div>
  </body>
</html>

   
  








Related examples in the same category

1.Sized Absolute center aligned
2.width and height inline style
3.width height and absolute positioning
4.Stretched Absolute center aligned
5.Sized Absolute center offset
6.Stretched Absolute centered
7.Top Aligned Shrinkwrapped Static Block
8.Shrinkwrapped Absolute Top Aligned
9.Sized Static Block top offset
10.Response layout with avatar image
11.About page layout
12.About page layout 2
13.Daliy post layout
14.Quotation layout
15.Day by day post layout
16.Fixed Box Layout
17.Using Fixed height and width to create layout
18.Layout input controls with css
19.Using table to layout form controls
20.Form Layout with HTML Example
21.Site map layout
22.Poem layout
23.Nested style layout
24.Liquid Layout
25.Fixed Width Layout
26.Column span for four column layout
27.How tables linearize for layouts
28.Centering a layout horizontally
29.Creating a maximum-width layout
30.Gallery layout
31.Link navigation layout
32.Link topic layout
33.Post layout
34.Three link layout
35.Center content layout
36.Card layout page
37.Even column layout
38.Box layout
39.Two column layout, 1024 pixel width
40.Content area layout
41.Code layout
42.Page layout with position:absolute;
43.Two-column layout with fixed width and height
44.Using margin to create offset for layout
45.Layout with three layers
46.position:fixed; layout
47.Layout with position:absolute;