首页  >  文章  >  web前端  >  如何让图片垂直居中显示

如何让图片垂直居中显示

迷茫
迷茫原创
2017-03-25 14:16:361703浏览

第1种,居中效果

40d6074869e84e17b0bc8171f56a4547
086ac50b2a81e0c248261364378eb69a居中效果94b3e26ee717c64999d7867364b1b4a3
94b3e26ee717c64999d7867364b1b4a3

/*第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种 图片居中

78507ce151ea3f9eeec4fb3f1d62f75f
3316fe9a58ce266a7ee62c54a633350a
308625d172841afc08c3db21a355132854bdf357c58b8a65c66d7c19c8e4d114
94b3e26ee717c64999d7867364b1b4a3

/*第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; 
f9713c455a503d7a9d43bd11c7dcb6a5
65d308271a661589b937db41bedfe6bd5522df1df61bcd11469ca689b0ae3a5254bdf357c58b8a65c66d7c19c8e4d114
94b3e26ee717c64999d7867364b1b4a3

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

 第4种,居中效果
9bdb3d5ef73c41856e6f9876405503e2
5a23c02b86c3ced35dcb5a3c124e3c8e
94b3e26ee717c64999d7867364b1b4a3

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

以上是如何让图片垂直居中显示的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn