CSS vertical alignment of inline/inline-block elements

后端 未结 4 1213
南旧
南旧 2020-11-22 09:36

I\'m trying to get several inline and inline-block components aligned vertically in a div. How come the span in this exam

4条回答
  •  日久生厌
    2020-11-22 09:57

    For fine tuning the position of an inline-block item, use top and left:

      position: relative;
      top: 5px;
      left: 5px;
    

    Thanks CSS-Tricks!

提交回复
热议问题