图片居中,多余隐藏

显示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;}

 

posted @ 2016-12-05 19:29  后除  阅读(279)  评论(0编辑  收藏  举报