运行 ❯
获取您
自己
的网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> #container { width: 80%; aspect-ratio: 3/1; padding: 40px 0; margin: auto; border: solid black 2px; overflow-x: hidden; overflow-y: scroll; scroll-snap-type: y mandatory; } .blue { background-color: lightblue; width: 95%; aspect-ratio: 3/1; } .green { background-color: lightgreen; width: 80%; aspect-ratio: 4/1; } .blue, .green { margin: 2px; scroll-snap-align: start none; scroll-margin-block: 10px; } </style> </head> <body> <h3>CSS scroll-margin-block property.</h3> <p>Scroll-margin-block property is set on the child elements inside the container, so that snap position is offset by a margin inside the container in the block direction.</p> <p>In this case, snap position is set to start in block direction, so the element in focus should snap into place at the very top of the container. But instead, because of the scroll-margin-block value, the element in focus is offset by 10px margin between child element and 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>