📜  如何在 HTML 中将文本内容水平对齐到中心?

📅  最后修改于: 2021-11-07 08:14:45             🧑  作者: Mango

在本文中,我们将使用 HTML 将文本内容居中对齐。我们使用align=”center”属性将文本内容设置为居中。

句法:

 Contents... 

align=”center” 属性用于将文本内容设置为居中。

示例 1:

HTML


  

    
        How to horizontal align text
        content into center in HTML?
    
  
    

  

    

        GeeksforGeeks     

       

        How to horizontal align text         content into center in HTML?     

       

        GeeksforGeeks: A computer         science portal for geeks     

     


HTML


  

    
        How to horizontal align text
        content into center in HTML?
    
  
    

  

    

GeeksforGeeks

       

        How to horizontal align text         content into center in HTML?     

              

        GeeksforGeeks: A computer         science portal for geeks     

     


输出:

示例 2:使用 CSS text-align=”center” 属性将文本内容设置为居中。

HTML



  

    
        How to horizontal align text
        content into center in HTML?
    
  
    

  

    

GeeksforGeeks

       

        How to horizontal align text         content into center in HTML?     

              

        GeeksforGeeks: A computer         science portal for geeks     

     

输出: