show/hide this revision's text 5 added 103 characters in body

I'm trying to use divs instead of tables to style boxes around my content. The content can be any size and needs to allow the browser to be resized to any degree. Need the background color and border to contain the content. This works fine with tables. How do I get a div to work the same way?

Note: I added "_"s because my non-breaknig spaces were getting lost.

Sample Page

Sample image

alt text

Content:

<style type="text/css">
    div.box, table.box
    {
        padding: 10px 1000px 10px 10px;
    }

    div.box-header, td.box-header
    {
        border:  solid  1px  #BBBBBB ;
        font-size: larger;
        padding: 4px;
        background-color: #DDDDDD;
    }   

    div.box-body, td.box-body
    {
        padding: 6px;
        border:  solid  1px  #BBBBBB ;
        border-top: none;
    }
</style>


<div class="box">
    <div class="box-header">please_help_make_these_divs_stop_overlapping</div>
    <div class="box-body">please_help_make_these_divs_stop_overlapping</div>
</div>

<table class="box" width="100%" cellpadding="0" cellspacing="0">
    <tr><td class="box-header">tables_make_good_containers_tables_make_good</td></tr>
    <tr><td class="box-body">tables_make_good_containers_tables_make_good</td></tr>
</table>
show/hide this revision's text 4 added 72 characters in body

I'm trying to use divs instead of tables to style boxes around my content. The content can be any size and needs to allow the browser to be resized to any degree. Need the background color and border to contain the content. This works fine with tables. How do I get a div to work the same way?

Note: I added "_"s because my non-breaknig spaces were getting lost.

Sample image

alt text

Content:

<style type="text/css">
    div.box, table.box
    {
        padding: 10px 1000px 10px 10px;
    }

    div.box-header, td.box-header
    {
        border:  solid  1px  #BBBBBB ;
        font-size: larger;
        padding: 4px;
        background-color: #DDDDDD;
    }   

    div.box-body, td.box-body
    {
        padding: 6px;
        border:  solid  1px  #BBBBBB ;
        border-top: none;
    }
</style>


<div class="box">
    <div class="box-header">please&nbsp;help&nbsp;make&nbsp;these&nbsp;divs&nbsp;stop&nbsp;overlapping</div>
    >please_help_make_these_divs_stop_overlapping</div>
    <div class="box-body">please&nbsp;help&nbsp;make&nbsp;these&nbsp;divs&nbsp;stop&nbsp;overlapping</div>
>please_help_make_these_divs_stop_overlapping</div>
</div>

<table class="box" width="100%" cellpadding="0" cellspacing="0">
    <tr><td class="box-header">tables&nbsp;make&nbsp;good&nbsp;containers&nbsp;tables&nbsp;make&nbsp;good</td></tr>
    >tables_make_good_containers_tables_make_good</td></tr>
    <tr><td class="box-body">tables&nbsp;make&nbsp;good&nbsp;containers&nbsp;tables&nbsp;make&nbsp;good</td></tr>
>tables_make_good_containers_tables_make_good</td></tr>
</table>
show/hide this revision's text 3 added 1 characters in body

I'm trying to use divs instead of tables to style boxes around my content. The content can be any size and needs to allow the browser to be resized to any degree. Need the background color and border to contain the content. This works fine with tables. How do I get a div to work the same way?

Sample image

link text

alt text

Content:

<style type="text/css">
    div.box, table.box
    {
        padding: 10px 100px 1000px 10px 10px;
    }

    div.box-header, td.box-header
    {
        border:  solid  1px  #BBBBBB ;
        font-size: larger;
        padding: 4px;
        background-color: #DDDDDD;
    }   

    div.box-body, td.box-body
    {
        padding: 6px;
        border:  solid  1px  #BBBBBB ;
        border-top: none;
    }
</style>


<div class="box">
    <div class="box-header">please&nbsp;help&nbsp;make&nbsp;these&nbsp;divs&nbsp;stop&nbsp;overlapping</div>
    <div class="box-body">please&nbsp;help&nbsp;make&nbsp;these&nbsp;divs&nbsp;stop&nbsp;overlapping</div>
</div>

<table class="box" width="100%" cellpadding="0" cellspacing="0">
    <tr><td class="box-header">tables&nbsp;make&nbsp;good&nbsp;containers&nbsp;tables&nbsp;make&nbsp;good</td></tr>
    <tr><td class="box-body">tables&nbsp;make&nbsp;good&nbsp;containers&nbsp;tables&nbsp;make&nbsp;good</td></tr>
</table>
show/hide this revision's text 2 added 58 characters in body
show/hide this revision's text 1