최근에이 문제가 발생했습니다. 콘텐츠의 측면 스크롤 오버 플로우를 위해 CSS에서 이러한 속성/속성 쌍을 정의해야한다고 생각합니다. 여기에 텍스트를 사용하는 예는,의는 도움이되기를 바랍니다 :
.item-class {
overflow-y: hidden;
overflow-x: scroll;
white-space: nowrap;
margin: 0, 10px, 0, 10px;
}
<div class="item-class">
<img src="https://static.pexels.com/photos/700447/pexels-photo-700447.jpeg" alt="Num1" height="300" width="300">
<img src="https://static.pexels.com/photos/700448/pexels-photo-700448.jpeg" alt="Num2" height="300" width="300">
<img src="https://static.pexels.com/photos/700450/pexels-photo-700450.jpeg" alt="Num3" height="300" width="400">
<img src="https://static.pexels.com/photos/700420/pexels-photo-700420.jpeg" alt="Num4" height="300" width="500">
</div>
편집 :이 사업부에 포함, 그것은 또한 이미지와 함께 작동하는 것을 보여주기 위해 예제 사진을 사용
이 이미지의 라인과 함께 작동하지 않는 것? –