CSS3/CSS之居中解析(水平+垂直居中、水平居中,垂直居中)

来源:https://www.cnblogs.com/xsd1/archive/2019/11/26/11936313.html
-Advertisement-
Play Games

首先,我們來看下垂直居中: (1)、如果是單行文本,則可以設置的line-height的數值,讓其等於父級元素的高度! <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" conte ...


首先,我們來看下垂直居中:

(1)、如果是單行文本,則可以設置的line-height的數值,讓其等於父級元素的高度!

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        .box{
            background: green;
            height:200px;
        }
        a {height:100%;
        line-height: 200px;
        color:red;
}
 </style>
</head>
<body>
   <div class="box">
       <a href="">ggg </a>
   </div>
</body>
</html>

 

 

 (2)、如果元素是行內塊級元素,一般會使用diaplay:inline-block,vertical-align:middle,還有一個偽元素讓元素內容處於容器中央!給父元素添加偽元素!

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        .box {
            background: green;
            height:200px;
        }
     .box::after, .box2{
         display:inline-block;
         vertical-align: middle;
     }
     .box::after{
         content:'';
         height:100%;
     }
     .box2{background-color:red;width:20px;height:20px;}
 </style>
</head>
<body>
   <div class="box">
       <div class="box2"></div>
   </div>
</body>
</html>

 

 

 (3)、通過display:flex來實現垂直居中;

父級:display:flex;

子元素:align-self:center;

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        .box {
            background: green;
            height:300px;
            width: 600px;
            display:flex;
           
        }
        .box2{background:red;
        width:30%;
        height:30%;
        align-self: center;

     }
    
 </style>
</head>
<body>
   <div class="box">
       <div class="box2"></div>
   </div>
</body>
</html>

(4)、使用display:table進行垂直居中!

給父元素設置display:table;子元素設置為display:table-cell;

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        .box {
            background-color: green;
            height:300px;
            width: 600px;
            display:table;
        }
      
       .box .box2{
           color:red;
       
        display:table-cell;
         vertical-align: middle;
         
}
    
 </style>
</head>
<body>
   <div class="box">
       <div class="box2">ddddd</div>
   </div>
</body>
</html>

 

 

 (5),已經知道父元素的高度,給子元素相對定位,在通過translaY()得到垂直居中

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        .box {
            background-color: green;
            height:300px;
            width: 600px;
           
        }
      
       .box .box2{
           background-color:red;
            width:50%;
             height:50%;
             position: relative;
             top:50%;
             transform:translateY(-50%);        
}
    
 </style>
</head>
<body>
   <div class="box">
       <div class="box2"></div>
   </div>
</body>
</html>

 

 

 6)、父元素高度不知道,同過transform實現,先給父元素相對定位,在給子元素絕對定位

 

 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        .box {
            background-color: green;
            height:300px;
            width: 600px;
            position: relative;
        }
      
       .box .box2{
           background-color:red;
            width:50%;
             height:50%;
             position: absolute;
             top:50%;
             transform:translateY(-50%);        
}
    
 </style>
</head>
<body>
   <div class="box">
       <div class="box2"></div>
   </div>
</body>
</html>

二、水平居中:

(1)、行內元素方案,只要把行內元素包裹 在一個盒子中,並且在他父級元素添加如下屬性:text-align:center;

 

 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        .box {
            background-color: green;
            height:300px;
            width: 600px;
            text-align:center;
        }
      P{color:red;}     
 </style>
</head>
<body>
   <div class="box">
       <p>1111</p>
   </div>
</body>
</html>

  

 

 (2)、單個塊狀元素解決方案:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        .box {
            background-color: green;
            height:300px;
            width: 600px;
            text-align:center;
        }
    .box2{
        background-color: red;
        width: 20px;
        height: 20px;
        margin:0 auto;
    }    
 </style>
</head>
<body>
   <div class="box">
       <div class="box2"></div>
   </div>
</body>
</html>

 

 3)、多個塊狀元素解決方案:父元素設置為text-align:center;子元素設置為:display:inline-block;

 

 相信很多人在剛接觸前端或者中期時候總會遇到一些問題及瓶頸期,如學了一段時間沒有方向感或者堅持不下去一個人學習枯燥乏味有問題也不知道怎麼解決,對此我整理了一些資料 喜歡我的文章想與更多資深大牛一起討論和學習的話 歡迎加入我的學習交流群907694362

!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        .box {
            background-color: green;
            height:300px;
            width: 600px;
            text-align:center;
        }
    .box2, .box3{
        background-color: red;
        width: 20px;
        height: 20px;
        display:inline-block;
    }    
 </style>
</head>
<body>
   <div class="box">
       <div class="box2"></div>
       <div class="box3"></div>
   </div>
</body>
</html>

也可以使用flexbox來實現:

 

 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        .box {
            background-color: green;
            height:300px;
            width: 600px;
           display:flex;
           justify-content:center;
        }
    .box2, .box3, .box4{
        background-color: red;
        width: 20px;
        height: 20px;
      
    }    
 </style>
</head>
<body>
   <div class="box">
       <div class="box2"></div>
       <div class="box3"></div>
       <div class="box4"></div>
   </div>
</body>
</html>

 

(4)、不定寬度塊元素水平居中:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        .box {
            float:left;
            position: relative;
            left:50%;
        }
    .box ul{
        position:relative;
        left:-50%;
    }
 </style>
</head>
<body>
   <div class="box">
       <ul>
           <li>1111</li>
           <li>111</li>
           <li>111</li>
       </ul>
   </div>
</body>
</html>

三:實現水平+垂直居中,也就是在中央:(1)單行行內元素:父元素設置:text-align:center,display:table-cell;vertical-align:middle,在這裡,圖片,文字,都是一樣的操作

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        .box {
            background-color: #ccc;
            width:500px;
            height: 500px;
            display:table-cell;
            text-align: center;
            vertical-align: middle;
        }
        img{width:50px;
        height: 50px;}
   
 </style>
</head>
<body>
   <div class="box">
      <img src="5.jpg" alt="">
   </div>
</body>
</html>

 

 文字在中央,還可以父級設置為text-align:center;line-height設置為父元素的height

 

 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        .box {
            background-color: #ccc;
            width:500px;
            height: 500px;
            text-align: center;
        }
        
   p{line-height: 500px;}
 </style>
</head>
<body>
   <div class="box">
  <p>1111</p>
      
   </div>
</body>

(2)對於單個塊級元素,父元素設置為相對定位,子元素設置為絕對定位高度,寬度為50%

 

 

!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        .box {
            background-color: #ccc;
            width:500px;
            height: 500px;
            position: relative;  
        }
        .box2{position: absolute;
        top:50%;
        left:50%;
        background-color: black;
        width: 20px;
        height: 20px;}
   
 </style>
</head>
<body>
   <div class="box">
       <div class="box2"></div>
  
      
   </div>
</body>
</html>

(3)、flex實現不定寬度水平+垂直居中

 

 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        .box {
            background-color: green;
            height:300px;
            width: 600px;
           display:flex;
           justify-content:center;
           align-items:center;
        }
    .box2, .box3, .box4{
        background-color: red;
        width: 20px;
        height: 20px;
      
    }    
 </style>
</head>
<body>
   <div class="box">
       <div class="box2"></div>
      
   </div>
</body>
</html>

推薦閱讀:CSS邊框長度控制 

                   css樣式的書寫順序及原理——很重要!

原文鏈接:https://blog.csdn.net/qq_35788269/article/details/80691114

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <meta name="viewport" content="width=device-width, initial-scale=1.0">    <meta http-equiv="X-UA-Compatible" content="ie=edge">    <title>Document</title>    <style>        .box{            background: green;            height:200px;        }        a {height:100%;        line-height: 200px;        color:red;} </style></head><body>   <div class="box">       <a href="">ggg </a>   </div></body></html>————————————————版權聲明:本文為CSDN博主「左手寫愛等等」的原創文章,遵循 CC 4.0 BY-SA 版權協議,轉載請附上原文出處鏈接及本聲明。原文鏈接:https://blog.csdn.net/qq_35788269/article/details/80691114


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • var LayVerifyExtend = { notnullNonnegativeInteger: function (value, item) { //value:表單的值、item:表單的DOM對象 if (!/^-?(?:\d+|\d{1,3}(?:,\d{3})+)(?:\d+)?$/.t ...
  • 1、新建一個layui.extend.js文件,頁面調用時這個文件放到layui.js後面。 2、基礎的配置卸載config中,擴展的組件寫入extend,組件的路徑是相對於config下base的路徑。 例如: layui.config({ version: false, //一般用於更新模塊緩存 ...
  • rem佈局 1. 技術選型 方案:採取單獨製作移動頁面方案 技術:佈局採取rem適配佈局(less rem+媒體查詢) 設計圖紙:750px尺寸 2. 相關文件夾結構 3. 設置視口標簽以及引入初始化央視 ~~~html ~~~ 4. 設置公共的common.less文件 設置好最常見的屏幕尺寸,利 ...
  • 今天,在頁面上碰到一個非 select 標簽的下拉框,打算進行定位和模擬選中。 <input aria-invalid="false" autocomplete="disabled" placeholder="請選擇" type="text" class="AABBCC-input DDCC-inp ...
  • 1.在指南的緩存章節里webpack.config.js文件中,使用new的方法會報錯 const webpack = require('webpack'); + new webpack.optimize.CommonsChunkPlugin({ + name: 'vendor' + }), new ...
  • 運用Taro實現多端導航欄/tabbar實例 (H5 + 小程式 + React Native) 最近一直在搗鼓taro開發,雖說官網介紹支持編譯到多端,但是網上大多數實例都是H5、小程式,很少有支持RN端。恰好Taro是基於React技術,想著之前也做過一些react項目,如是抱著好奇深究了一番, ...
  • 練習1:求兩個數字的和:獲取任意的兩個數字的和 function getSum(x, y) { return x + y; } console.log(getSum(10, 20)); 練習2:求1-100之間所有的數字的和 function geteverySum() { var sum = 0; ...
  • 前言 最近在做 webapp,遇到了很多移動端相容的問題,其中一個問題就是:輸入框觸發 focus 後,鍵盤彈出,然後遮住了輸入框。 然後在 和`IOS`上,這個問題的表現形式不一樣,而原生鍵盤和第三方鍵盤也不一樣,但引起的問題都是一樣的:輸入框被遮住了。 需要的效果 在鍵盤彈出時,獲得焦點的輸入框 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...