One way is to make your boxes floats. Add float:left; to box, box-header, and box-body. Add clear:both; to box-body to force it below box-header. You'll probably need to add clear property to whatever content follows as well.
You will not get right edges of box-header and box-body to align, though. If you want their width widths to be the same, you really need want a table. Table is a tool to make all cells in the same column to share the widths.
For other ideas, check out this SO question.
