运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> #container { position: relative; 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; } .blue { background-color: lightblue; height: 95%; aspect-ratio: 4/3; } .green { background-color: lightgreen; height: 80%; aspect-ratio: 3/2; } .blue, .green { margin: 2px; display: inline-block; scroll-snap-align: end; scroll-margin-right: 20px; } </style> </head> <body> <h3>CSS scroll-margin-right property.</h3> <p>Scroll-margin-right property is set on the child elements, so that snap position on the right side is offset by a distance to the container.</p> <div id="container"> <div class="blue"></div> <div class="green"></div> <div class="blue"></div> <div class="green"></div> <div class="blue"></div> <div class="green"></div> <div class="blue"></div> </div> </body> </html>