So I haven't been on here in awhile. Recently took a web design job after being unemployed for a little bit. I admit Im a little rusty.. I have a div on the site that basically houses 6 short areas of text that I will use to anchor link to a newsletter. I don't have this designed yet, all i have is an image example of what Im trying to achieve.

Im wondering what css I would use, this is what I think it should be but I can't seem to get it working with out overflowing and changing each div size. I need each div to be comparable to a row in a table per se. Is there an easier way to do this? I need the outside div (previewdiv) to be 472px width and 275px height, and I need to have the 6 divs inside with text in them.
Basically I just need to know how to set this up properly so when text is added or deleted the divs do not change in size. Any help???
<div class="previewdiv">
<div class="row1"></div>
<div class="row2"></div>
<div class="row3"></div>
<div class="row4"></div>
<div class="row5"></div>
<div class="row6"></div>
</div>
-
- <div class="previewdiv">
- <div class="row1"></div>
- <div class="row2"></div>
- <div class="row3"></div>
- <div class="row4"></div>
- <div class="row5"></div>
- <div class="row6"></div>
- </div>
-
@charset "UTF-8";
.previewdiv {
position:absolute;
left:23px;
top:311px;
width:472px;
height:275px;
z-index:1;
background-color: #FFFFFF;
padding: 5px;
}
.row1 {
position:relative;
width:235px;
height:auto;
float:left;
}
.row2 {
position:relative;
width:235px;
height:auto;
float:left;
}
.row3 {
position:relative;
width:235px;
height:auto;
float:left;
}
.row4 {
position:relative;
width:235px;
height:auto;
float:left;
}
.row5 {
position:relative;
width:235px;
height:auto;
float:left;
}
.row6 {
position:relative;
width:235px;
height:auto;
float:left;
}
-
- @charset "UTF-8";
-
- .previewdiv {
- position:absolute;
- left:23px;
- top:311px;
- width:472px;
- height:275px;
- z-index:1;
- background-color: #FFFFFF;
- padding: 5px;
- }
-
- .row1 {
- position:relative;
- width:235px;
- height:auto;
- float:left;
- }
-
- .row2 {
- position:relative;
- width:235px;
- height:auto;
- float:left;
-
- }
-
- .row3 {
- position:relative;
- width:235px;
- height:auto;
- float:left;
-
- }
- .row4 {
- position:relative;
- width:235px;
- height:auto;
- float:left;
- }
-
- .row5 {
- position:relative;
- width:235px;
- height:auto;
- float:left;
- }
-
- .row6 {
- position:relative;
- width:235px;
- height:auto;
- float:left;
- }
-
-