I have two sections that are currently on different lines. They both contain multiple lines of text and I need them to go next to each other. I need it to have a 10px margin.
flexbox may be the easiest. you can also use grid. float would work but with the advent of flexbox and grid would be considered a poor hack in this use case.
you could also make both section’s display: inline-block but flexbox and grid give you greater placement control (like easy centering).