日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網(wǎng)為廣大站長提供免費收錄網(wǎng)站服務,提交前請做好本站友鏈:【 網(wǎng)站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(50元/站),

點擊這里在線咨詢客服
新站提交
  • 網(wǎng)站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會員:747

我們可以輕松地將文本在 div 內(nèi)水平和垂直居中。讓我們一一看看。

使用 text-align 屬性將 Div 中的文本水平居中

要將 div 中的文本水平居中,請使用 text-align 屬性。 text-align 屬性確定行框在塊級元素內(nèi)的對齊方式。以下是可能的值 –

    left – 每個行框的左邊緣與塊級元素內(nèi)容區(qū)域的左邊緣對齊。

    right – 每個行框的右邊緣與塊級元素內(nèi)容區(qū)域的右邊緣對齊。

    center – 每個行框的中心與塊級元素內(nèi)容區(qū)域的中心對齊。

    justify – 每個行框的邊緣應與塊級元素內(nèi)容區(qū)域的邊緣對齊。

    字符串 – 列中單元格的內(nèi)容將在給定字符串上對齊。

    示例

    現(xiàn)在讓我們使用 text-align 屬性將 div 中的文本水平居中 –

    <!DOCTYPE html>
    <html>
    <head>
       <title>Align Horizontally</title>
       <meta name="viewport" content="width=device-width,
       initial-scale=1.0">
       <style>
          .demo {
             background-color: orange;
             border: 3px solid yellow;
             text-align: center;
          }
       </style>
    </head>
    <body>
       <h1>Software Quality Management</h1>
       <p>Software Quality Management ensures the required level of software quality is achieved.
       </p>
       <div class="demo">
          <p>This text in div is centered horizontally.</p>
       </div>
    </body>
    </html> 
    

    登錄后復制

    使用 justify-content 屬性在 Div 中水平居中文本

    示例

    要將 div 中的文本水平居中,請使用 justify-content 屬性。現(xiàn)在讓我們看一個例子

    <!DOCTYPE html>
    <html>
    <head>
       <title>Align Horizontally</title>
       <meta name="viewport" content="width=device-width,
       initial-scale=1.0">
       <style>
          .demo {
             background-color: orange;
             border: 3px solid yellow;
             display: flex;
             justify-content: center;
          }
       </style>
    </head>
    <body>
       <h1>Software Quality Management</h1>
       <p>Software Quality Management ensures the required level of software quality is achieved.
       </p>
       <div class="demo">
          <p>This text in div is centered horizontally.</p>
       </div>
    </body>
    </html> 
    

    登錄后復制

    使用 padding 屬性在 Div 中垂直居中文本

    要將 div 中的文本垂直居中,請使用 padding 屬性。 padding 屬性允許您指定元素的內(nèi)容與其邊框之間應出現(xiàn)多少空間。以下 CSS 屬性可用于控制列表。您還可以使用以下屬性為框每一側(cè)的填充設置不同的值 –

      padding-bottom 指定元素的底部填充。
      padding-top 指定元素的頂部填充。
      padding-left 指定元素的左內(nèi)邊距。
      padding-right 指定元素的右內(nèi)邊距。
      padding 用作前述屬性的簡寫。

      示例

      現(xiàn)在讓我們看一個使用 padding 屬性在 div 中垂直居中文本的示例 –

      <!DOCTYPE html>
      <html>
      <head>
         <title>Align Vertically</title>
         <meta name="viewport" content="width=device-width,
         initial-scale=1.0">
         <style>
            .demo {
               background-color: orange;
               border: 3px solid yellow;
               padding: 50px 0;
            }
         </style>
      </head>
      <body>
         <h1>Software Quality Management</h1>
         <p>Software Quality Management ensures the required level of software quality is achieved.
         </p>
         <div class="demo">
            <p>This text in div is centered vertically.</p>
         </div>
      </body>
      </html>
      

      登錄后復制

      使用 line-height 屬性在 Div 中垂直居中文本

      要將 div 中的文本垂直居中,請使用 line-height 屬性。 line-height 屬性修改組成一行文本的行內(nèi)框的高度。

      以下是可能的值 –

        正常 – 指示瀏覽器將元素中的行高設置為“合理”距離。

        number – 元素中行的實際高度是該值乘以元素的字體大小。

        length – 元素中行的高度是給定的值。

        百分比 – 元素中行的高度按元素字體大小的百分比計算。

        示例

        現(xiàn)在讓我們看一個使用 line-height 屬性在 div 中垂直居中文本的示例 –

        <!DOCTYPE html>
        <html>
        <head>
           <title>Align Vertically</title>
           <meta name="viewport" content="width=device-width,
           initial-scale=1.0">
           <style>
              .demo {
                 background-color: orange;
                 border: 3px solid yellow;
                 line-height: 150px;
                 height: 200px;
              }
           </style>
        </head>
        <body>
           <h1>Software Quality Management</h1>
           <p>Software Quality Management is a process that ensures the required level of software
           quality is achieved.</p>
           <div class="demo">
              <p> This text in div is centered vertically.</p>
           </div>
        </body>
        </html>
        

        登錄后復制

        以上就是如何將文本(水平和垂直)居中在一個div塊內(nèi)?的詳細內(nèi)容,更多請關(guān)注www.92cms.cn其它相關(guān)文章!

分享到:
標簽:垂直 如何將 居中 文本 水平和
用戶無頭像

網(wǎng)友整理

注冊時間:

網(wǎng)站:5 個   小程序:0 個  文章:12 篇

  • 51998

    網(wǎng)站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會員

趕快注冊賬號,推廣您的網(wǎng)站吧!
最新入駐小程序

數(shù)獨大挑戰(zhàn)2018-06-03

數(shù)獨一種數(shù)學游戲,玩家需要根據(jù)9

答題星2018-06-03

您可以通過答題星輕松地創(chuàng)建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學四六

運動步數(shù)有氧達人2018-06-03

記錄運動步數(shù),積累氧氣值。還可偷

每日養(yǎng)生app2018-06-03

每日養(yǎng)生,天天健康

體育訓練成績評定2018-06-03

通用課目體育訓練成績評定