运行 ❯
获取您的
自有
网站
×
更改方向
保存代码
更改主题,暗/亮
转到空间
<!DOCTYPE html> <html> <head> <style> #container { width: 80%; aspect-ratio: 2/1; margin: auto; border: solid black 2px; overflow-x: scroll; overflow-y: hidden; white-space: nowrap; scroll-snap-type: x mandatory; } #container > img { height: 95%; margin: 2px; scroll-snap-align: none center; } </style> </head> <body> <h3>CSS scroll-snap-align property.</h3> <p>Drag the scrollbar horizontally inside the photo gallery box, let go, and see the scroll-snap effect that makes the images snap into center.</p> <div id="container"> <img src="img_chania.jpg" alt="alley" width="460" height="345"> <img src="img_forest_narrow.jpg" alt="bridge in jungle" width="326" height="400"> <img src="img_mountains.jpg" alt="mountains" width="600" height="400"> <img src="img_man_narrow.jpg" alt="man with camera" width="709" height="963"> <img src="img_5terre.jpg" alt="Cinque Terre" width="600" height="400"> </div> </body> </html>