Advertisement
GuiEnrik

CSS Columns Layout

Jan 2nd, 2012
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.36 KB | None | 0 0
  1. /* Columns Layout Coding - From: http://www.babooforum.com.br/forum/index.php?/topic/579450-css-alinhar-divs-uma-ao-lado-da-outra/*/
  2. #maincontainer{
  3.  width: 660px; /*Width of main container*/
  4.  margin: 0 auto 0 auto; /*Center container on page*/
  5.  font-family: "Times New Roman", Times, serif;
  6.  font-size: 12px;
  7.  text-align: center;
  8.  color: #333333;
  9.  background: transparent;
  10.  height: auto;
  11. }
  12.  
  13. #centercolumn{
  14.  float: left;
  15.  margin: 10px auto 0 auto;
  16.  width: 210px; /*Width of left column in pixel*/
  17.  margin-left: auto; /*Set margin to that of -(MainContainerWidth)*/
  18.  background: transparent url("Imagens/alpha_white.gif") repeat;
  19.  height: 650px;
  20.  border-left: 1px dashed #666666;
  21. }
  22.  
  23. #leftcolumn{
  24.  margin: 10px auto 0 auto;
  25.  float: left;
  26.  width: 210px; /*Width of left column in pixel*/
  27.  margin-left: auto; /*Set margin to that of -(MainContainerWidth)*/
  28.  background: transparent url("Imagens/alpha_blue.gif") repeat;
  29.  height: 650px;
  30.  border-left: 1px dashed #666666;
  31. }
  32.  
  33. #rightcolumn{
  34.  margin: 10px auto 0 auto;
  35.  float: left;
  36.  width: 210px; /*Width of right column*/
  37.  margin-right: auto; /*Set left margin to -(RightColumnWidth)*/
  38.  background: transparent url("Imagens/alpha_blue.gif") repeat;
  39.  height: 650px;
  40.  border-left: 1px dashed #666666;
  41.  border-right: 1px dashed #666666;
  42. }
  43.  
  44. #rightcolumn, #leftcolumn, #centercolumn {
  45.  padding-top: 10px;
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement