I have been attempting to split a div into two columns using CSS, but I have not managed to get it working yet. My basic structure is as follows:
Make children divs inline-block and they will position side by side:
inline-block
#content { width: 500px; height: 500px; } #left, #right { display: inline-block; width: 45%; height: 100%; }
See Demo