首页 > web前端 > css教程 > 正文

如何让图片垂直居中显示

迷茫
发布: 2017-03-25 14:16:36
原创
1705 人浏览过

第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种,居中效果



/*第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学习者快速成长!