How to make text vertically and horizontally center in an HTML page

前端 未结 7 1692
眼角桃花
眼角桃花 2020-12-01 20:58

I have some experience with Java , C , databases , networking etc..But anything related with Html I am a begginer.The only thing that I am looking for is to center two words

7条回答
  •  有刺的猬
    2020-12-01 22:00

    You can put the text inside a

    and align the text using CSS :

    WORD1
    WORDWORDWORDWORD2

    the

    is a block element which means it will be stretched to 100% width and the text will be in in the center of the page

    jsFiddle example

提交回复
热议问题