» » » Table style with css

Blog

Table style with css

How to build a table with css.

Table style with css

CSS Code

div#content {
   width: 466px;
   height: auto;
   padding: 0px;
   overflow: hidden;
} 
 
div.column_left {
   width: 110px;
   float: left;
   padding: 0px 0px 15px 0px;
}
 
div.column_right {
   text-align: justify;
   width: 312px;
   float: right;
   padding: 2px 22px 15px 0px;
}


HTML Code

<html>
 <body>
  <div id="content">
   <div class="column_left"></div>
   <div class="column_right"></div>
  </div>
 </body>
</html>

0 comments

×

Only registered users can leave comments.

© Copyright ©2008-2017. All Rights Reserved.