this isn't for a website. i made a script to calculate some tool information and i need to lay it out so it is nice for printing, that is all. so, however ugly the code, i just need it to work.
thanks
Moderator: General Moderators
Code: Select all
<style>
div.column {
float: left;
width: 33%;
}
</style>
<div class="column">column 1</div>
<div class="column">column 2</div>
<div class="column">column 3</div>