show/hide this revision's text 2 added 3 characters in body

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.

show/hide this revision's text 1

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 to be the same, you really need 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.