<"/> 搜尋論壇 <">

首頁 >web前端 >html教學 >Html當中文字與標籤如何讓其居中

Html當中文字與標籤如何讓其居中

一个新手
一个新手原創
2017-09-19 10:21:582390瀏覽

1、文字居中:

text-align: center;
line-height: 100px; (=height)

2、標籤居中

margin: 0 auto;   其中0指的是margin-top:0

程式碼片:

<!DOCTYPE html>
      <html lang="en"><head>
    <meta charset="UTF-8">
    <title>搜索论坛</title>
    <link rel="stylesheet" href="https://www.baidu.com/img/baidu_jgylogo3.gif">
    <style>
        .item1{            
            height: 100px;            
            width: 100px;           
            background-color: red;            
            text-align: center;            
            line-height: 100px;            
            margin: 0 auto;        
        }
        .item2{            
            height: 100px;            
            width: 100px;            
            background-color: wheat;            
            text-align: center;            
            line-height: 100px;            
            margin: 100px auto;        
        }
    </style>
    </head>
    <body>
    <p class="outer">
         <p class="item1">1111</p>
         <p class="item2">2222</p>
    </p>
    </body>
</html>

Html當中文字與標籤如何讓其居中

#

以上是Html當中文字與標籤如何讓其居中的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn