Is there a way to style divs with ids 1&2 and have the inner divs act like a table? Specifically, I want the first column to display a label, the second column to display an input field, and the third column to display a button. I attempted to adjust the inner divs' width, but it didn't have any effect, they remained the same size. (All inner divs are set to display inline)
<div id='1'>
<div><h4></h4></div>
<div><select></select></div>
<div><button></button></div>
</div>
<div>
<div id='2'>
<div><h4></h4></div>
<div><input></input></div>
<div><button></button></div>
</div>
</div>