17 lines
204 B
CSS
17 lines
204 B
CSS
body {
|
|
padding: 10px;
|
|
}
|
|
|
|
.three_column {
|
|
float: left;
|
|
width: 33.33%;
|
|
}
|
|
|
|
|
|
/* Clear floats after the columns */
|
|
|
|
.three_column_row:after {
|
|
content: "";
|
|
display: table;
|
|
clear: both;
|
|
} |