Here's what I have for coding so far:
Page:
CSS Document:
Is there a way to line up div's #2 and #3 beside each other?
Like this horrible drawing I have made
:

Or would I have to use tables in order to do it?
Thanks
Page:
Code:
<div id="div1">
<div id="div2"></div>
<div id="div3"></div>
</div>
Code:
#div1 {
height: 428px;
width: 752px;
margin-top: 36px;
margin-left: auto;
margin-right: auto;
}
#div2 {
height: 428px;
width: 319px;
}
#div3 {
height: 428px;
width: 319px;
}
Is there a way to line up div's #2 and #3 beside each other?
Like this horrible drawing I have made

Or would I have to use tables in order to do it?
Thanks