看很多朋友经常问图片如何居中,有些朋友也查过很多代码,终无功而返。下面我就在这里分享一下
1、下面代码可以实现 左右居中
2、楼下那位兄弟提供了以下代码,可以实现 上下左右居中
本文地址:http://liuyanzhao.com/2004.html
转载请注明
1、下面代码可以实现 左右居中
- img{
- display:block;
- position:relative;
- margin:auto;
- }
2、楼下那位兄弟提供了以下代码,可以实现 上下左右居中
- img {
- display: block;
- position: absolute;
- margin: auto;
- left: 0;
- top: 0;
- rightright: 0;
- bottombottom: 0;
- }
本文地址:http://liuyanzhao.com/2004.html
转载请注明
2017年05月11日 16:41:16
来个上下左右局中 div{ width:500px; height:500px; background:#000; position:relative;} div img{ display:block; position: absolute; margin:auto; left:0; top:0; right:0; bottom:0; }
2017年05月11日 16:47:40
不错
2017年04月11日 19:05:14
我博客也写过,可以去看看我的,你这个方法我也用过,不过居中再给个定位是不是会有点多余啊?
2017年04月11日 19:07:20
没有啊,一是相对浏览器,一个是相对div吧