Struggling to format a page with 3 columns using only 2 divs for the contents. One div affects just the end of the content, while the other impacts all of it.
Currently, the layout is like this:
This is the first content-------------------This is the second content
This is the third content
I've been attempting to shift the third content into its own column. Using float right did move it to the third column, but below the other content. Adjusting margin-top negatively isn't an option due to potential overlap upon window resizing. Ideally, I want it to look like this:
----This is the first content----This is the second content----This is the third content
The main issue I'm encountering is that I can't alter the HTML file, so my focus is solely on the CSS file.