图片居中,多余隐藏

来源:互联网 发布:使用gson解析json数据 编辑:程序博客网 时间:2024/06/06 03:41
显示1000px,图片1920px。

1 /*外层DIV*/2 div{position:relative;overflow:hidden;width:1000px;}3 /*left=50%刚好在中间,margin-left=往前移动图片一半,这是图片就是居中了*/4 img{border:none;width:1920px;position:absolute;top:0;left:50%;margin-left:-960px;}

 

原创粉丝点击