【发布时间】:2021-05-17 14:50:18
【问题描述】:
我想弄清楚为什么我的滚动快照代码不起作用。你能帮我修改一下代码吗?
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<title>Website</title>
</head>
<body>
<section>
<h3>header 1</h3>
</section>
<section>
<h3>header 2</h3>
</section>
</body>
</html>
以下是CSS代码:
body {
scroll-snap-type: y mandatory;
scroll-padding-top: 15vh;
overflow-y: scroll;
}
section{
height: 100vh;
scroll-snap-align: start;
}
【问题讨论】:
标签: html css google-chrome web scroll