The blog has moved to http://jessehouse.com/ ... Many google searches point here so I am leaving it operational, but there will be no new posts.

Tuesday, March 29, 2011

Rows and Columns with CSS

here is a code snippet for creating rows and columns with css - I guess you could say this is a table?

<html>
<head>
<title>css rows and columns</title>
<style type="text/css">
body {
font-family: Verdana;
}
div.rows div.row {
clear:both;
border-bottom: 1px dashed black;
width: 100%;
}
div.rows div.column {
float: left;
}
div.rows div.clear-row {
line-height: 0px;
font-size: 0px;
clear:both;
}
.w-70-percent {
width: 70%;
}
.w-30-percent {
width: 30%;
}
#container {
margin: auto;
width: 70%;
border: 2px solid black;
}
</style>
</head>
<body>
<div id="container">
<div class="rows">
<div class="row">
<div class="column w-70-percent">
Row 1 / Column 1
</div>
<div class="column w-30-percent">
Row 1 / Column 2
</div>
<div class="clear-row">
&nbsp;
</div>
</div>
<div class="row">
<div class="column w-70-percent">
Row 2 / Column 1
</div>
<div class="column w-30-percent">
Row 2 / Column 2
</div>
<div class="clear-row">
&nbsp;
</div>
</div>
</div>
</body>
</html>



Resources

1 comment:

W.RAZI.EU said...

Hi, is it possible to have the left column width fixed, 300px for example and right to stretch across the page?