1. 程式人生 > >讓一個圖片在div中居中(四種方法)

讓一個圖片在div中居中(四種方法)

title bsp lex lag tps ali osi 分享圖片 copy

第一種方法:

<div class="title">
        <div class="flag"></div>
        <div class="content">
            <img src="img_p1_title.png">
        </div>
    </div>    
技術分享圖片
.title {
   width: 100%;
    font-size: 0;  
    height: 10%;
}
.title .content img {
    width: 35%;
}
/*--主要的--*/
.content{
    display: inline-block;
    vertical-align: middle;
  }
.flag{
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: 0;
  }    
技術分享圖片

第二種方法:

<div class="title">
      <img src="img_p1_title.png">
</div>
技術分享圖片
.title {
  display: flex;
  justify-content: center;
  align-items: center;  
}
.title img {
  width: 35%;
}
//該方法有些舊系統不支持
技術分享圖片

第三種方法:

<div class="title">
    <span>第三種方法</span>
</div>
技術分享圖片
.title {
   height: 15%;
   font-size: 18px;
   position: relative;
}
.title span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
技術分享圖片

第四種方法:

<div class="title">
    <span>第四種方法</span>
</div>
技術分享圖片
.title {
    width: 200px;
    height: 200px;
    vertical-align: middle;
    display: table-cell;
    text-align: center;
}
技術分享圖片

***:紅色部分就是主要代碼

--------------------- 本文來自 zyy_0725 的CSDN 博客 ,全文地址請點擊:https://blog.csdn.net/zyy_0725/article/details/78763740?utm_source=copy

讓一個圖片在div中居中(四種方法)