level 1
少年狂风仔
楼主
找了一天代码终于找到图片居中显示方法了,在这里做记录给小白方便找到方法 css中实现DIV图片始终显示居中即使超出浏览器只显示图片中间,两边则隐藏。
代码如下:
img {left:50%;margin-left:-100%;width:1920px;height:auto;position:relative;}
DIV {position:absolute;top:0;left:0;width:100%;display: flex;justify-content: center;align-items: center;margin: auto;}
2017年09月29日 14点09分
1
代码如下:
img {left:50%;margin-left:-100%;width:1920px;height:auto;position:relative;}
DIV {position:absolute;top:0;left:0;width:100%;display: flex;justify-content: center;align-items: center;margin: auto;}