button
, textarea
, input
, and select
default to inline-block
.
In the event you would want to inline-block
a div
you'd give it a class name.
.inline-block {
display: inline-block
}
Then...
CORRECTION
I was mistaken about img
. It seems it defaults to inline
and not inline-block