I have a layout similar to:
I would like for the div to only exp
div
display: inline-block adds an extra margin to your element.
display: inline-block
I would recommend this:
#element { display: table; /* IE8+ and all other modern browsers */ }
Bonus: You can also now easily center that fancy new #element just by adding margin: 0 auto.
#element
margin: 0 auto