How to center text vertically in HTML using CSS only

前端 未结 5 807
醉酒成梦
醉酒成梦 2020-12-17 04:53

I have a very simple HTML. Due to some limitations, I cannot modify the HTML content. I want to center the text vertically only using CSS.


    &         


        
5条回答
  •  清歌不尽
    2020-12-17 05:01

    Try this:

    .text-tag{
    
        text-align: center;
        margin-top: 25%;
    }
    

    And apply "text-tag" to the text you want to center.

提交回复
热议问题