Variations on W3C inline-block

Floating box
Floating box

This box, like the others, is set to "display: inline-block", with "width:400px" Note that it does not act responsively.

- - - - - - - -

Floating box
Floating box

Same as above, but with "max-width:400px".Two problems: width never less than specified amount, and not horizontally alighned in full-width window.

- - - - - - - -

Floating box
Floating box

Now is "display:inline" and "max-width:400px".

- - - - - - - -

Floating box
Floating box

Now is "display:block" and "max-width:400px". This narrows down properly.

- - - - - - - -