1
HTML/CSSAdvanced#css#internationalization
block elements stack vertically and accept width/height fully. inline elements ignore width/height and margin top/bottom. inline-block flows with text like inline but respects box-model dimensions — useful for buttons and form inputs that need sizing while staying in a line.
button { display: inline-block; width: 120px; height: 40px; margin: 0 8px; }