首页 > 代码库 > css图片居中(水平居中和垂直居中)
css图片居中(水平居中和垂直居中)
http://www.51xuediannao.com/html+css/htmlcssjq/css_img_center.html
css图片居中分css图片水平居中和垂直居中两种情况,有时候还需要图片同时水平垂直居中,下面分几种居中情况分别介绍
css图片居中分css图片水平居中和垂直居中两种情况,有时候还需要图片同时水平垂直居中,下面分几种居中情况分别介绍。
css图片水平居中
利用margin: 0 auto实现图片水平居中
利用margin: 0 auto实现图片居中就是在图片上加上css样式margin: 0 auto 如下:
<div style="text-align: center; width: 500px; border: green solid 1px;">
<img alt="" src=http://www.mamicode.com/"https://www.baidu.com/img/baidu_jgylogo3.gif" style="margin: 0 auto;" />
</div>
运行代码
利用文本的水平居中属性text-align: center
代码如下:
<div style="text-align: center; width: 500px; border: green solid 1px;">
<img alt="" src=http://www.mamicode.com/"https://www.baidu.com/img/baidu_jgylogo3.gif" style="display: inline-block;" />
</div>
运行代码
css图片垂直居中
利用高==行高实现图片垂直居中
这种方法是要知道高度才可以使用,代码如下:
<div style="text-align: center; width: 500px;height:200px; line-height:200px; border: green solid 1px;">
<img alt="" src=http://www.mamicode.com/"https://www.baidu.com/img/baidu_jgylogo3.gif" style="display: inline-block; vertical-align: middle;" />
</div>
运行代码
利用table实现图片垂直居中
利用table的方法是利用了table的垂直居中属性,代码如下:
这里使用display: table;和display: table-cell;来模拟table,这种方法并不兼容IE6/IE7,IE67不支持display: table,如果你不需要支持IE67那就可以用
缺点:当你设置了display: table;可能会改变你的原有布局
<div style="text-align: center; width: 500px;height:200px; display: table;border: green solid 1px;">
<span style="display: table-cell; vertical-align: middle; "><img alt="" src=http://www.mamicode.com/"https://www.baidu.com/img/baidu_jgylogo3.gif" style="display: inline-block;" /></span>
</div>
运行代码
利用绝对定位实现图片垂直居中
如果已知图片的宽度和高度可以这样,代码如下:
<div style="width: 500px;height:200px; position: relative; border: green solid 1px;">
<img alt="" src=http://www.mamicode.com/"https://www.baidu.com/img/baidu_jgylogo3.gif" style="width: 120px; height: 40px;position: absolute; left:50%; top: 50%; margin-left: -60px;margin-top: -20px;" />
</div>
运行代码
移动端可以利用flex布局实现css图片垂直居中
移动端一般浏览器版本都比较高,所以可以大胆的使用flex布局,(flex布局参考css3的flex布局用法)演示代码如下:
css代码:
<style type="text/css">
/*web前端开发http://www.51xuediannao.com/*/
.ui-flex {
display: -webkit-box !important;
display: -webkit-flex !important;
display: -ms-flexbox !important;
display: flex !important;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap
}
.ui-flex, .ui-flex *, .ui-flex :after, .ui-flex :before {
box-sizing: border-box
}
.ui-flex.justify-center {
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center
}
.ui-flex.center {
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center
}
</style>
html代码:
<div class="ui-flex justify-center center" style="border: green solid 1px; width: 500px; height: 200px;">
<div class="cell">
<img alt="" src=http://www.mamicode.com/"https://www.baidu.com/img/baidu_jgylogo3.gif" style="" />
</div>
</div>运行代码
本文链接:css图片居中(水平居中和垂直居中)http://www.51xuediannao.com/html+css/htmlcssjq/css_img_center.html
css图片居中(水平居中和垂直居中)由懒人建站收集整理,您可以自由传播,请主动带上本文链接
懒人建站就是免费分享,觉得有用就多来支持一下,没有能帮到您,懒人也只能表示遗憾,希望有一天能帮到您。
css图片居中(水平居中和垂直居中)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。