Vertical Centering a block in IE7

后端 未结 4 502
滥情空心
滥情空心 2021-01-14 03:07

I\'m trying to get vertical centering a block in IE7 (IE6 if possible too), let me get one thing clear - I\'m not vertically centering the actual element, but the text with

4条回答
  •  無奈伤痛
    2021-01-14 03:48

    Why don't you try a padding?

    a {
        display: inline-block;
        overflow: hidden;
        padding: 20px;
        background: black;
        color: white;
        text-align: center;
        text-decoration: none;
    }
    
    Hello superlongword
    

    That sure works crossbrowser atleast for IE7 (couldn't test on IE6), example

提交回复
热议问题