How to vertically align inline elements

后端 未结 3 658
庸人自扰
庸人自扰 2020-12-31 05:31

I have this anchor tag that has text between to be vertically align text. I\'m using this css attribute vertical-align: middle. Nothing happens tho.

3条回答
  •  一整个雨季
    2020-12-31 06:22

    test test test test

    div{ border:1px solid red; width:400px; height:400px; position:relative; } p{ height:30px; position:absolute; top:50%; margin-top:-15px; /* negative half of height*/ }

    Check working example at http://jsfiddle.net/Z2ssq/1/

提交回复
热议问题