Vertically center align text

前端 未结 2 1085
无人共我
无人共我 2020-12-15 21:48

Ok, here\'s what this HTML elements looks like right now:

\"enter

I\'d like th

相关标签:
2条回答
  • 2020-12-15 22:04

    Add style="vertical-align: middle" to your <img /> tag.

    See http://phrogz.net/CSS/vertical-align/index.html for a full explanation about the vertical-align tag.

    0 讨论(0)
  • 2020-12-15 22:16

    To center text vertically set the line-height to the same as the height, for example:

    img{ height: 30px; }
    #text{ line-height: 30px; }
    

    And set vertical-alignment to middle:

    #text{ line-height: 30px; vertical-align:middle; }
    
    0 讨论(0)
提交回复
热议问题