blob: a127ba57582109655a2dd271424f2e9653a8070d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<html>
<head>
<style>
* {
scroll-snap-type: y mandatory;
scroll-snap-align: none end;
}
</style>
<script>
document.addEventListener('DOMContentLoaded', () => {
document.documentElement.contentEditable = true
document.execCommand('insertHorizontalRule', false, null)
})
</script>
</head>
</html>
|