css实现图片横向排列滚动

.imageList{
        overflow-x: auto;
        overflow-y: hidden;
        height:180px;
        white-space: nowrap;
      img{
        width:auto;
        height:100%;
        margin-right:10px;
      }
 }
<div class="imageList">
    <img src="1.jpg"/>
    <img src="2.jpg"/>
    <img src="3.jpg"/>
    <img src="4.jpg"/>
    <img src="1.jpg"/>
</div>

这里注意,img标签不能左浮动,外层容器必须加不换行

white-space: nowrap;

 

posted @ 2017-12-07 14:21  蓓蕾心晴  阅读(3020)  评论(1编辑  收藏  举报