gpt4 book ai didi

html - 溢出-x : scroll not working

转载 作者:太空宇宙 更新时间:2023-11-04 03:58:01 26 4
gpt4 key购买 nike

我有一个内部有 float (左)图像的 div,但是 overflow-x : scroll; 似乎不起作用..

这是我的容器:

.browse-gallery {
width: 100%;
height: 110px;
overflow-x: scroll;
overflow-y: hidden;
border-top: 7px solid #585453;
background: #585453;
white-space: nowrap;
float: left;
}

和图像:

.browse-gallery img {
width: 109px;
height: 81px;
display: block;
border-top: none;
float: left;
position: relative;
cursor: pointer;
margin-right: 5.7px;
white-space: nowrap;
}

我该如何解决这个问题?谢谢。

最佳答案

删除 float 并添加显示:内联 block : Demo

.browse-gallery img {
width: 109px;
height: 81px;
display: inline-block;
border-top: none;
/*float: left;*/
position: relative;
cursor: pointer;
margin-right: 5.7px;
white-space: nowrap;
background:#fff;
}

关于html - 溢出-x : scroll not working,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22499187/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com