CSS Help

Itworx4me

Well-known member
I have the following template and css. I would like to have the heading spread out evenly through out the box. How would I do that?

HTML:
<style type='text/css'>
.bigfooter {
    border: 1px solid black;
    margin-top: 25px;
    padding-bottom: 50px;
    padding-top: 10px;

}
.column1, .column2, .column3 {
    border-right:dashed 1px;
    float: left;
    text-align:center;
    margin: 0 10px 0 10px;
    padding: 5px 10px 5px 5px;
}
.column4 {
    float: left;
    text-align: center;
    margin: 5px;
    padding: 0 10px 0 10px;
}
</style>
<div class="bigfooter">
    <div class="column1">
    Headlines
    </div>
    <div class="column2">
    Media
    </div>
    <div class="column3">
    Message Board
    </div>
    <div class="column4">
    Site Help
    </div>
</div>

Thanks,
Itworx4me
 
Top Bottom