【CSS】讓圖片在高寬固定的div里水平垂直都居中的三種辦法


效果:

 實現一:絕對定位加精算

復制代碼
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>圓角Img示例</title>

<style type="text/css">
     .parentDiv{ 
        width:200px;
        height:400px;
        background-color:yellow;
        position:relative;
   }

     .childImg{
        position:absolute;
        height:128px;
        width:128px;
        left:36px;/* (200-128)/2 */
        top:136px;/* (400-128)/2 */
     }
</style>
</head>
<body>
    <div class="parentDiv">
        <img class="childImg" src="bggj-08.png" />
    </div>
</body>
</html>
復制代碼

 

實現二:無須計算 自動偏移 比上面方法省事

復制代碼
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>圖片垂直水平居中</title>

<style type="text/css">
     .parentDiv{ 
        width:200px;
        height:400px;
        background-color:yellow;
        position:relative;
   }

     .childImg{
        height:128px;
        width:128px;
        position:absolute;
        left:50%;
        top:50%;
        transform:translate(-50%,-50%);
     }
</style>
</head>
<body>
    <div class="parentDiv">
        <img class="childImg" src="bggj-08.png" />
    </div>
</body>
</html>
復制代碼

 

方法三:柔性布局,但僅在Chrome中好用,Editplus3不支持,別的瀏覽器自己試。

復制代碼
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>圖片垂直水平居中</title>

<style type="text/css">
     .parentDiv{ 
        width:200px;
        height:400px;
        background-color:yellow;
        display:flex;
        justify-content:center;
        align-items:center;
   }

     .childImg{
        height:128px;
        width:128px;
     }
</style>
</head>
<body>
    <div class="parentDiv">
        <img class="childImg" src="bggj-08.png" />
    </div>
</body>
</html>
復制代碼

 

END


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM