首頁 > web前端 > css教學 > 主體

如何讓圖片垂直居中顯示

迷茫
發布: 2017-03-25 14:16:36
原創
1712 人瀏覽過

第1種,居中效果


居中效果


/*第1种,垂直居中效果*/
.box{
       width: 200px;height: 200px;border: 1px solid #ccc;
       position: relative;
  }
.center{
      width: 100px;height: 100px;background: gray;
      margin: auto;position: absolute;top: 0;left: 0;bottom: 0;right: 0;
    }
登入後複製

第2種圖片居中




/*第2种 图片垂直居中*/
/* span是辅助元素 vertical-align这个属性的特点,它是相对兄弟级行高(line-height)来定位*/

.box2{
    width: 350px;height: 350px;border: 1px solid #F22727;
    text-align: center;
}
.center2{ vertical-align: middle;}
.block{ line-height: 350px;}/*跟父级一样高*/
登入後複製

第3種,居中效果父元素使用display: table; 子元素display: table-cell; 



/*第3种,居中效果*/
.box3{
    width: 350px;height: 350px;border: 1px solid #F22727;display: table;text-align: center;
}
.center3{
    display: table-cell;vertical-align: middle;
}
登入後複製

 第4種,居中效果


< img class="center4" src="yz_p5.jpeg" alt=""/>

/*第4种,居中效果  根据父元素来计算*/
.box4{
    width:300px;height: 300px;border: 1px solid #F22727;
}
.center4{
    width: 200px;height: 200px;position: relative;left: 16%;top: 19%;
}
登入後複製

以上是如何讓圖片垂直居中顯示的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!