I\'m trying to get several inline and inline-block components aligned vertically in a div. How come the span in this exam
inline
inline-block
div
span
For fine tuning the position of an inline-block item, use top and left:
position: relative; top: 5px; left: 5px;
Thanks CSS-Tricks!