-
Notifications
You must be signed in to change notification settings - Fork 672
/
Overview.bs
1539 lines (1336 loc) · 72.3 KB
/
Overview.bs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<pre class="metadata">
Title: CSS Scroll Snap Module Level 1
Group: csswg
Shortname: css-scroll-snap
TR: https://www.w3.org/TR/css-scroll-snap-1/
Level: 1
Status: ED
Implementation Report: https://wpt.fyi/results/css/css-scroll-snap
Previous Version: https://www.w3.org/TR/2021/CR-css-scroll-snap-1-20210311/
Previous Version: https://www.w3.org/TR/2019/CR-css-scroll-snap-1-20190319/
Previous Version: https://www.w3.org/TR/2019/CR-css-scroll-snap-1-20190131/
Previous Version: https://www.w3.org/TR/2018/CR-css-scroll-snap-1-20180814/
Previous Version: https://www.w3.org/TR/2017/CR-css-scroll-snap-1-20171214/
Previous Version: https://www.w3.org/TR/2017/CR-css-scroll-snap-1-20170824/
Previous Version: https://www.w3.org/TR/2017/CR-css-scroll-snap-1-20170209/
Previous Version: https://www.w3.org/TR/2016/CR-css-scroll-snap-1-20161020/
Previous Version: https://www.w3.org/TR/2016/WD-css-scroll-snap-1-20160623/
Previous Version: https://www.w3.org/TR/2016/WD-css-snappoints-1-20160329/
Previous Version: https://www.w3.org/TR/2015/WD-css-snappoints-1-20150326/
Work Status: Testing
ED: https://drafts.csswg.org/css-scroll-snap-1/
Editor: Matt Rakow, Microsoft, w3cid 62267
Editor: Jacob Rossi, Microsoft, w3cid 45616
Editor: Tab Atkins-Bittner, Google, http://xanthir.com/contact/, w3cid 42199
Editor: Elika J. Etemad / fantasai, Apple, http://fantasai.inkedblade.net/contact, w3cid 35400
Abstract: This module contains features to control panning and scrolling behavior with “snap positions”.
Ignored Terms: containing block chain, scroll position, scrollport
At Risk: 'scroll-snap-stop'
At Risk: whether 'scroll-snap-type' can cause boxes that are not [=scroll containers=] to [=capture snap positions=] (see <a href="https://github.com/w3c/csswg-drafts/issues/4496">discussion</a>)
Status Text:
A test suite and an implementation report will be produced during the
CR period.
</pre>
<pre class=link-defaults>
spec: selectors-4; type: selector; text: :target
spec: css-pseudo-4; type: selector;
text: ::first-line
text: ::first-letter
</pre>
<style>
pre.ascii-art {
display: table; /* shrinkwrap */
margin: 1em auto;
line-height: normal;
}
</style>
Introduction {#intro}
=====================
<em>This section is not normative.</em>
Popular UX paradigms for scrollable content frequently employ paging through content,
or sectioning into logical divisions.
This is especially true for touch interactions
where it is quicker and easier for users to quickly pan through a flatly-arranged breadth of content
rather than delving into a hierarchical structure through tap navigation.
For example, it is easier for a user to view many photos in a photo album
by panning through a photo slideshow view
rather than tapping on individual photos in an album.
However, given the imprecise nature of scrolling inputs
like touch panning and mousewheel scrolling,
it is difficult for web developers to guarantee a well-controlled scrolling experience,
in particular creating the effect of paging through content.
For instance, it is easy for a user to land at an awkward scroll position
which leaves an item partially on-screen when panning.
To this end, this module introduces <a>scroll snap positions</a>
which enforce the scroll positions that a <a>scroll container’s</a> scrollport may end at
after a scrolling operation has completed.
Also, to offer better control over paging and scroll positioning
even when snapping is off,
this module defines the 'scroll-padding' property
for use on all <a>scroll containers</a>,
to adjust the <a>scroll container</a>’s <a>optimal viewing region</a>
for the purpose of paging and scroll-into-view operations.
Similarly the 'scroll-margin' property can be used on any box
to adjust its visual area
for the purpose of scroll-into-view operations.
Module interactions {#placement}
--------------------------------
This module extends the scrolling user interface features defined in [[!CSS2]] section 11.1.
None of the properties in this module apply to the ''::first-line'' and ''::first-letter'' pseudo-elements.
Value Definitions {#values}
-----------------
This specification follows the <a href="https://www.w3.org/TR/CSS2/about.html#property-defs">CSS property definition conventions</a> from [[!CSS2]]
using the <a href="https://www.w3.org/TR/css-values-3/#value-defs">value definition syntax</a> from [[!CSS-VALUES-3]].
Value types not defined in this specification are defined in CSS Values & Units [[!CSS-VALUES-3]].
Combination with other CSS modules may expand the definitions of these value types.
In addition to the property-specific values listed in their definitions,
all properties defined in this specification
also accept the <a>CSS-wide keywords</a> as their property value.
For readability they have not been repeated explicitly.
<!--
████████ ██ ██ ███ ██ ██ ████████ ██ ████████ ██████
██ ██ ██ ██ ██ ███ ███ ██ ██ ██ ██ ██ ██
██ ██ ██ ██ ██ ████ ████ ██ ██ ██ ██ ██
██████ ███ ██ ██ ██ ███ ██ ████████ ██ ██████ ██████
██ ██ ██ █████████ ██ ██ ██ ██ ██ ██
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
████████ ██ ██ ██ ██ ██ ██ ██ ████████ ████████ ██████
-->
Motivating Examples {#examples}
===============================
<div class="example">
In this example, a series of images arranged in a <a>scroll container</a>
are used to build a photo gallery. In this example the <a>scroll container</a>
is larger than the photos contained within (such that multiple images may be seen simultaneously), and the image
sizes vary. Using mandatory element-based snap
positions, scrolling will always complete with an image centered in the <a>scroll container’s</a> scrollport.
<pre class="lang-css">
img {
/* Specifies that the center of each photo
should align with the center of the scroll
container in the X axis when snapping */
scroll-snap-align: none center;
}
.photoGallery {
width: 500px;
overflow-x: auto;
overflow-y: hidden;
white-space: nowrap;
/* Requires that the scroll position always be
at a snap position when the scrolling
operation completes. */
scroll-snap-type: x mandatory;
}
</pre>
<pre class="lang-html">
<div class="photoGallery">
<img src="img1.jpg">
<img src="img2.jpg">
<img src="img3.jpg">
<img src="img4.jpg">
<img src="img5.jpg">
</div>
</pre>
<figure>
<img src="images/element_snap_positions.png" alt="">
<figcaption>
The layout of the scroll container’s contents in the example.
The snapport is represented by the red rectangle, and the snap area is represented by the yellow rectangle. Since the scroll-snap-align is “center” in the inline (horizontal) axis, a snap position is established at each scroll position which aligns the X-center of the snapport (represented by a red dotted line) with the X-center of a snap area (represented by a yellow dotted line).
</figcaption>
</figure>
</div>
<div class="example">
This example builds a paginated document that aligns each page near to (but not exactly on) the edge of the <a>scroll container</a>.
This allows the previous page to “peek” in from above in order to make the user aware that they are not yet at the top of the document.
Using proximity snap positions instead of mandatory snap positions allows the user to stop halfway through a page (rather than forcing them
to snap one page at a time). However, if a scrolling operation would finish near a snap position, then the scroll will be adjusted to
align the page as specified.
<pre class="lang-css">
.page {
/* Defines the top of each page as the
edge that should be used for snapping */
scroll-snap-align: start none;
}
.docScroller {
width: 500px;
overflow-x: hidden;
overflow-y: auto;
/* Specifies that each element’s snap area should
align with a 100px offset from the top edge. */
scroll-padding: 100px 0 0;
/* Encourages scrolling to end at a snap position when the
operation completes, if it is near a snap position */
scroll-snap-type: y proximity;
}
</pre>
<pre class="lang-html">
<div class="docScroller">
<div class="page">Page 1</div>
<div class="page">Page 2</div>
<div class="page">Page 3</div>
<div class="page">Page 4</div>
</div>
</pre>
<figure>
<img src="images/element_snap_positions_offset.png" alt="">
<figcaption>
The layout of the scroll container’s contents in the example.
The snapport is represented by the red rectangle
(inset from the top by 100px due to the scroll-padding),
and the snap area is represented by the yellow rectangle.
Since the scroll-snap-align is “start” in the Y axis,
a snap position is established at each scroll position
which aligns the Y-start of the snapport
(represented by a red dotted line)
with the Y-start of a snap area
(represented by a yellow dotted line).
</figcaption>
</figure>
</div>
<!--
███████ ██ ██ ████████ ████████ ██ ██ ████ ████████ ██ ██
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
██ ██ ██ ██ ██████ ████████ ██ ██ ██ ██████ ██ ██ ██
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
███████ ███ ████████ ██ ██ ███ ████ ████████ ███ ███
-->
Scroll Snap Model {#overview}
=============================
This module defines controls for
<dfn export lt="scroll snap position" local-lt="snap position">scroll snap positions</dfn>,
which are scroll positions that produce particular alignments
of content within a scroll container.
Using the 'scroll-snap-type' property on the relevant <a>scroll container</a>,
the author can request a particular bias
for the scrollport to land on a <a>snap position</a>
after scrolling operations
(including programmatic scrolls such as the {{Window/scrollTo()}} method).
<a>Snap positions</a> are specified
as a particular alignment ('scroll-snap-align')
of an element’s <a>scroll snap area</a>
(its border bounding box, as modified by 'scroll-margin')
within the <a>scroll container</a>’s <a>snapport</a>
(its scrollport, as reduced by 'scroll-padding').
This is conceptually equivalent to specifying the alignment of
an <a>alignment subject</a> within an <a>alignment container</a>.
A scroll position that satisfies the specified alignment
is a <a>snap position</a>.
The act of adjusting the scroll position
of a scroll container’s scrollport
such that it is aligned to a snap area
is called <dfn export lt="scroll snap" local-lt="snap">snapping</dfn>,
and a <a>scroll container</a> may be
<a>snapped</a> to a <a>snap area</a>
in each axis
if its scrollport is aligned with that <a>snap area</a> in that axis
and there is no active scrolling operation.
When there are multiple valid snap areas,
a single one is chosen for each axis when <a>snapping</a>
according to the algorithm for <a href="#multiple-aligned-snap-areas">selecting between multiple aligned snap areas</a>.
The CSS Scroll Snap Module
intentionally does not specify nor mandate
any precise animations or physics used to enforce <a>snap positions</a>;
this is left up to the user agent.
<a>Snap positions</a> only affect the nearest ancestor <a>scroll container</a>
on the element’s <a>containing block chain</a>.
Capturing Scroll Snap Areas: Properties on the scroll container {#properties-on-the-scroll-container}
======================================================================================================
<!--
████████ ██ ██ ████████ ████████
██ ██ ██ ██ ██ ██
██ ████ ██ ██ ██
██ ██ ████████ ██████
██ ██ ██ ██
██ ██ ██ ██
██ ██ ██ ████████
-->
Scroll Snapping Rules: the 'scroll-snap-type' property {#scroll-snap-type}
--------------------------------------------------------------------------
<pre class="propdef">
Name: scroll-snap-type
Value: none | [ x | y | block | inline | both ] [ mandatory | proximity ]?
Initial: none
Applies to: all elements
Inherited: no
Percentages: n/a
Computed value: specified keyword(s)
Animation type: discrete
</pre>
The 'scroll-snap-type' property specifies
whether a <a>scroll container</a> is a <a>scroll snap container</a>,
how <a href="#snap-strictness">strictly</a> it <a>snaps</a>,
and <a href="#snap-axis">which axes</a> are considered.
If no strictness value is specified, ''proximity'' is assumed.
<div class="example">
In this example, snapping to headings is enabled in the <a>block axis</a>
(the y axis for horizontal writing, x axis for vertical writing):
<pre>
html {
scroll-snap-type: block; /* applied to main document scroller */
}
h1, h2, h3, h4, h5, h6 {
scroll-snap-align: start; /* snap to the start (top) of the viewport */
}
</pre>
</div>
UAs must apply the 'scroll-snap-type' value set on the root element
to the document viewport.
Note that, unlike 'overflow',
'scroll-snap-type' values are <em>not</em> propagated from HTML <{body}>.
<h4 id="snap-axis">
Scroll Snap Axis: the ''x'', ''y'', ''scroll-snap-type/block'', ''scroll-snap-type/inline'', and ''both'' values</h4>
The <dfn noexport lt="axis value">axis values</dfn>
specify what axis(es) are affected by <a>snap positions</a>,
and whether <a>snap positions</a> are evaluated independently per axis,
or together as a 2D point.
Values are defined as follows:
<dl dfn-type=value dfn-for="scroll-snap-type">
<dt><dfn>x</dfn>
<dd>
The <a>scroll container</a> <a>snaps</a> to <a>snap positions</a>
in its horizontal axis only.
<dt><dfn>y</dfn>
<dd>
The <a>scroll container</a> <a>snaps</a> to <a>snap positions</a>
in its vertical axis only.
<dt><dfn>block</dfn>
<dd>
The <a>scroll container</a> <a>snaps</a> to <a>snap positions</a>
in its block axis only.
<dt><dfn>inline</dfn>
<dd>
The <a>scroll container</a> <a>snaps</a> to <a>snap positions</a>
in its inline axis only.
<dt><dfn>both</dfn>
<dd>
The <a>scroll container</a> <a>snaps</a> to <a>snap positions</a>
in both of its axes independently
(potentially snapping to different elements in each axis).
</dl>
<h4 id="snap-strictness">
Scroll Snap Strictness: the ''scroll-snap-type/none'', ''proximity'', and ''mandatory'' values</h4>
The <dfn noexport lt="strictness value">strictness values</dfn>
(''scroll-snap-type/none'', ''proximity'', ''mandatory'')
specify how strictly
<a>snap positions</a> are enforced on the <a>scroll container</a>
(by forcing an adjustment to the scroll position).
Values are defined as follows:
<dl dfn-type="value" dfn-for="scroll-snap-type">
<dt><dfn>none</dfn>
<dd>
If specified on a <a>scroll container</a>,
the <a>scroll container</a> must not <a>snap</a>.
<dt><dfn>mandatory</dfn>
<dd>
If specified on a <a>scroll container</a>,
the <a>scroll container</a> is required to be <a>snapped</a> to a snap position
when there are no active scrolling operations.
If a valid <a>snap position</a> exists
then the scroll container must <a>snap</a> at the termination of a scroll
(if none exist then no <a>snapping</a> occurs).
<dt><dfn>proximity</dfn>
<dd>
If specified on a <a>scroll container</a>,
the <a>scroll container</a> may <a>snap</a> to a snap position
at the termination of a scroll,
at the discretion of the UA given the parameters of the scroll.
</dl>
Advisement:
Authors should use mandatory snap positions with consideration of
varyingly-sized screens and (if applicable) varying-sized content.
In particular, although access to snapped elements larger than the scrollport
is handled by the UA,
if authors assign mandatory snapping to non-adjacent siblings,
content in between can become inaccessible
in cases where it is longer than the screen.
A box <dfn export>captures snap positions</dfn>
if it is a <a>scroll container</a>
<em>or</em> has a value other than ''scroll-snap-type/none'' for 'scroll-snap-type'.
If a box’s nearest <a lt="captures snap positions">snap-position capturing</a> ancestor
on its <a>containing block chain</a>
is a <a>scroll container</a> with a non-''scroll-snap-type/none'' value for 'scroll-snap-type',
that is the box’s <dfn export local-lt="snap container">scroll snap container</dfn>.
Otherwise, the box has no <a>scroll snap container</a>,
and its <a>snap positions</a> do not trigger <a>snapping</a>.
<h4 id="re-snap" dfn export lt="re-snap">
Re-snapping After Layout Changes</h4>
If the content or layout of the document changes
(e.g. content is added, moved, deleted, resized)
such that the content of a <a>snapport</a> changes,
the UA must re-evaluate the resulting <a>scroll position</a>,
and re-snap if required.
If the <a>scroll container</a> was <a>snapped</a> before the content change
and those same [=snap areas=] still exist
(e.g. their associated elements were not deleted),
the scroll container must be re-snapped to those same snap areas
after the content change.
A <a>snap area</a> can be [=snapped=] in each axis,
following the algorithm for <a href="#multiple-aligned-snap-areas">selecting between multiple aligned snap areas</a>.
If it is not possible to snap to both
(e.g. if snapping to one resulted in the other being offscreen),
it must prefer the focused box,
followed by the targeted box,
followed by the block axis if neither box is focused or targeted.
Scrolling required by a re-snap operation to a new or different box
must behave and animate the same way as
any other scroll-into-view operation,
including honoring controls such as 'scroll-behavior'.
Scrolling behavior for re-snapping to the same box as before
however, is UA-defined.
The UA may, for example,
when snapped to the start of a section,
choose not to animate the scroll to the section’s new position
as content is dynamically added earlier in the document
in order to create the illusion of not scrolling.
<div class="example">
In the following example,
the log console,
when initially loaded and as each message is added to the bottom,
remains snapped to the bottom of the content
unless the user has scrolled away from that edge:
<pre class="lang-css">
.log {
scroll-snap-type: y proximity;
align-content: end;
}
.log::after {
display: block;
content: "";
scroll-snap-align: end;
}
</pre>
The rules create a single [=scroll snap area=]
represented by the ''::after'' pseudo-element,
positioned at the very bottom of a [=scroll snap container=].
If the user scrolls “near” the bottom,
the container will snap to it.
If more content is dynamically added to the container,
it’ll remain snapped to it
(because scroll containers are required
to re-snap to the same scroll snap area
if it still exists after any changes).
However, if the user has scrolled to somewhere else in the logs,
it won’t do anything at all.
</div>
<!--
████████ ███ ████████ ████████ ████ ██ ██ ██████
██ ██ ██ ██ ██ ██ ██ ██ ██ ███ ██ ██ ██
██ ██ ██ ██ ██ ██ ██ ██ ██ ████ ██ ██
████████ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ████
██ █████████ ██ ██ ██ ██ ██ ██ ████ ██ ██
██ ██ ██ ██ ██ ██ ██ ██ ██ ███ ██ ██
██ ██ ██ ████████ ████████ ████ ██ ██ ██████
-->
Scroll Snapport: the 'scroll-padding' property {#scroll-padding}
----------------------------------------------------------------
<pre class="propdef shorthand">
Name: scroll-padding
Value: [ auto | <<length-percentage [0,∞]>> ]{1,4}
Initial: auto
Applies to: <a>scroll containers</a>
Inherited: no
Percentages: relative to the corresponding dimension of the scroll container’s scrollport
Computed value: per side, either the keyword ''scroll-padding/auto'' or a computed <<length-percentage>> value
Animation type: by computed value type
</pre>
This property specifies
(for all <a>scroll containers</a>, not just <a>scroll snap containers</a>)
offsets that define the
<dfn export>optimal viewing region</dfn> of a scrollport:
the region used as the target region for placing things in view of the user.
This allows the author to exclude regions of the <a>scrollport</a>
that are obscured by other content
(such as fixed-positioned toolbars or sidebars)
or simply to put more breathing room
between a targeted element and the edges of the scrollport.
The 'scroll-padding' property is a <a>shorthand property</a> that sets
all of the <a href="#longhands"><css>scroll-padding-*</css> longhands</a>
in one declaration,
assigning values to the longhands representing each side
exactly as the 'padding' property does for its longhands.
Values have the following meanings:
<dl dfn-for="scroll-padding, scroll-padding-inline, scroll-padding-inline-start, scroll-padding-inline-end, scroll-padding-block, scroll-padding-block-start, scroll-padding-block-end" dfn-type=value>
: <dfn><<length-percentage [0,∞]>></dfn>
::
Defines an inward offset from the corresponding edge of the [=scrollport=].
When applied to the root viewport,
the offset is calculated and applied relative to the layout viewport
(rather than the visual viewport)
the same way as the corresponding [=inset properties=]
on [=fixed-positioned boxes=];
the [=optimal viewing region=] is the remaining area
that intersects with the visual viewport.
: <dfn>auto</dfn>
::
Indicates that the offset for the corresponding edge of the [=scrollport=] is UA-determined.
This should generally default to a used length of ''0px'',
but UAs may use heuristics to detect when a non-zero value is more appropriate.
<div class=example>
For example, a UA could detect when a ''position:fixed'' element
is being used as an opaque unscrollable “header”
that obscures the content below it,
and resolve the top offset to the height of that element
so that a “page down” operation (such as pressing <kbd>PgDn</kbd>)
automatically scrolls by one “visible page” of content.
</div>
</dl>
These offsets reduce the region of the <a>scrollport</a>
that is considered “viewable” <em>for scrolling operations</em>:
they have no effect on layout,
on the scroll origin or initial position,
or on whether or not an element is considered actually <em>visible</em>,
but should
affect whether an element or the caret is considered scrolled into view
(e.g. for targeting or focusing operations),
and reduce the amount of scrolling for paging operations
(such as using the <kbd>PgUp</kbd> and <kbd>PgDn</kbd> keys
or triggering equivalent operations from the scrollbar)
so that within the <a>optimal viewing region</a> of the <a>scrollport</a>
the user sees a continuous stream of content.
For a <a>scroll snap container</a> this region also defines
the <dfn export local-lt="snapport">scroll snapport</dfn>--
the area of the scrollport that is used as the <a>alignment container</a>
for the <a>scroll snap areas</a> when calculating <a>snap positions</a>.
<div class="example">
In this example, 'scroll-padding' is used to center slideshow images
within the portion of the scrollport
that is not obscured by a fixed-position toolbar.
<pre class="lang-css">
html {
overflow-x: auto;
overflow-y: hidden;
scroll-snap-type: x mandatory;
scroll-padding: 0 500px 0 0;
}
.toolbar {
position: fixed;
height: 100%;
width: 500px;
right: 0;
}
img {
scroll-snap-align: none center;
}
</pre>
</div>
UAs must apply the 'scroll-padding' values set on the root element
to the document viewport.
(Note that, unlike 'overflow',
'scroll-padding' values are <em>not</em> propagated from HTML <{body}>.)
Aligning Scroll Snap Areas: Properties on the elements {#properties-on-the-elements}
=====================================================================================
<!--
███ ████████ ████████ ███
██ ██ ██ ██ ██ ██ ██
██ ██ ██ ██ ██ ██ ██
██ ██ ████████ ██████ ██ ██
█████████ ██ ██ ██ █████████
██ ██ ██ ██ ██ ██ ██
██ ██ ██ ██ ████████ ██ ██
-->
Scroll Snapping Area: the 'scroll-margin' property {#scroll-margin}
-------------------------------------------------------------------
<pre class="propdef">
Name: scroll-margin
Value: <<length>>{1,4}
Initial: 0
Applies to: all elements
Inherited: no
Percentages: n/a
Computed value: per side, an absolute length
Animation type: by computed value type
</pre>
This property is a <a>shorthand property</a> that sets
all of the <a href="#longhands"><css>scroll-margin-*</css> longhands</a>
in one declaration,
assigning values to the longhands representing each side
exactly as the 'margin' property does for its longhands.
Values represent outsets defining the
<dfn export local-lt="snap area">scroll snap area</dfn>
that is used for snapping this box to the snapport.
The <a>scroll snap area</a> is determined by taking the transformed border box,
finding its rectangular bounding box
(axis-aligned in the <a>scroll container’s</a> coordinate space),
then adding the specified outsets.
Note: This ensures that the <a>scroll snap area</a> is always rectangular
and axis-aligned to the <a>scroll container’s</a> coordinate space.
If a page is navigated to a fragment that defines a target element
(one that would be matched by '':target'',
or the target of {{scrollIntoView()}}),
the UA should use the element's <a>scroll snap area</a>,
rather than just its border box,
to determine which area of the <a>scrollable overflow area</a>
to bring into view,
<em>even when snapping is off
or not applied on this element</em>.
<!--
███ ██ ████ ██████ ██ ██
██ ██ ██ ██ ██ ██ ███ ██
██ ██ ██ ██ ██ ████ ██
██ ██ ██ ██ ██ ████ ██ ██ ██
█████████ ██ ██ ██ ██ ██ ████
██ ██ ██ ██ ██ ██ ██ ███
██ ██ ████████ ████ ██████ ██ ██
-->
Scroll Snapping Alignment: the 'scroll-snap-align' property {#scroll-snap-align}
--------------------------------------------------------------------------------
<pre class="propdef">
Name: scroll-snap-align
Value: [ none | start | end | center ]{1,2}
Initial: none
Applies to: all elements
Inherited: no
Percentages: n/a
Computed value: two keywords
Animation type: discrete
</pre>
The 'scroll-snap-align' property specifies
the box’s <a>snap position</a> as an alignment of
its <a>snap area</a> (as the <a>alignment subject</a>)
within its <a>snap container’s</a> <a>snapport</a> (as the <a>alignment container</a>).
The two values specify the snapping alignment
in the <a>block axis</a> and <a>inline axis</a>, respectively,
as determined by the [=snap container=]’s [=writing mode=].
If only one value is specified, the second value defaults to the same value.
Values are defined as follows:
<dl dfn-type="value" dfn-for="scroll-snap-align">
<dt><dfn>none</dfn>
<dd>
This box does not define a <a>snap position</a> in the specified axis.
<dt><dfn>start</dfn>
<dd>
Start alignment of this box’s <a>scroll snap area</a>
within the <a>scroll container</a>’s <a>snapport</a>
is a <a>snap position</a>
in the specified axis.
<dt><dfn>end</dfn>
<dd>
End alignment of this box’s <a>scroll snap area</a>
within the <a>scroll container</a>’s <a>snapport</a>
is a <a>snap position</a>
in the specified axis.
<dt><dfn>center</dfn>
<dd>
Center alignment of this box’s <a>scroll snap area</a>
within the <a>scroll container</a>’s <a>snapport</a>
is a <a>snap position</a>
in the specified axis.
</dl>
Start and end alignments are resolved
with respect to the [=writing mode=] of the [=snap container=]
unless the [=scroll snap area=] is larger than the [=snapport=],
in which case they are resolved with respect to the [=writing mode=] of the box itself.
(This allows items in a container to have consistent snap alignment in general,
while ensuring that ''scroll-snap-align/start'' always aligns the item
to allow reading its contents from the beginning.)
<h4 id="snap-scope">
Scoping Valid Snap Positions to Visible Boxes</h4>
Since the purpose of scroll snapping is to align content within the <a>scrollport</a>
for optimal viewing,
a scroll position cannot be considered a valid <a>snap position</a>
if <a>snapping</a> to it would leave the contributing <a>snap area</a>
entirely outside the <a>snapport</a>,
even if it otherwise satisfies the required alignment of the <a>snap area</a>.
<div class="example">
For example, a <a>snap area</a> is top-aligned to the <a>snapport</a>
if its top edge is coincident with the <a>snapport</a>’s top edge;
and this would be considered a valid <a>snap position</a>
for block-axis start-aligned snapping of that <a>snap area</a>
<em>if at least part of the <a>snap area</a> is on-screen</em>.
If the entire <a>snap area</a> is outside the <a>snapport</a>, however,
then the <a>scroll container</a> cannot be considered to be <a>snapped</a>
because the required alignment, though satisfied, would not be relevant to the viewer.
<figure>
<pre class="ascii-art">
╔════viewport════╗┈┈┈┈┈┈┈┈┌──────────────┐
║ ┌─────┐ ┌──┐ ║ │ top-snapping │
║ ├──┐ │ └──┘ ║ │ element │
║ └──┴──┘ ║ │ │
╚════════════════╝ │ │
└──────────────┘
</pre>
<figcaption>
Alignment of an off-screen element
is not considered <a>snapping</a>.
</figcaption>
</figure>
</div>
<details class="note">
<summary>Why limit snapping to only when the element is visible?</summary>
As the <a href="https://www.webkit.org/blog/4017/scroll-snapping-with-css-snap-points/">WebKit implementers point out</a>,
extending a snap edge infinitely across the canvas
only allows for snapping gridded layouts,
and produces odd behavior for the user
when off-screen elements do not align
with on-screen elements.
(If this requirement is onerous for implementers however,
we can default to a gridded behavior
and introduce a switch to get smarter behavior later.)
</details>
Note: Although ''scroll-snap-type: both'' evaluates [=snap positions=] independently in each axis,
<a href="#choosing">choosing</a> of a [=snap position=] in one axis
can be influenced by [=snap positions=] in the other axis.
For example, snapping in one axis
may push off-screen the [=snap area=] that the other axis would otherwise align to,
making its [=snap position=] invalid and therefore unchooseable.
<h4 id="snap-overflow">
Snapping Boxes that Overflow the Scrollport</h4>
If the <a>snap area</a> is larger than the <a>snapport</a> in a particular axis,
then any scroll position in which
* the <a>snap area</a> covers the <a>snapport</a>, and
* the distance between the geometrically previous and subsequent
otherwise-valid <a>snap positions</a> in that axis
is larger than size of the <a>snapport</a> in that axis,
is a valid <a>snap position</a> in that axis.
The UA may use the specified alignment as a more precise target
for certain scroll operations (e.g. explicit paging).
<div class="example">
For example, take the first example in [[#examples]],
which had a photo as the area.
The author wants mandatory snapping from item to item,
but if the item happens to be larger than your viewport,
you want to be able to scroll around the whole thing once you’re over it.
Since the <a>snap area</a> is larger than the <a>snapport</a>,
while the area fully fills the viewport,
the container can be scrolled arbitrarily
and will not try to snap back to its aligned position.
However, if the container is scrolled such that the area
no longer fully fills the viewport in an axis,
the area resists outward scrolling
until it is scrolled sufficiently
to trigger snapping to a different <a>snap position</a>.
</div>
<div class=example>
For another example,
mandatory top-snapping on nested <{section}> elements
can produce large snapping areas
(from large top-level sections)
potentially filled with smaller snapping areas
(from the subsections).
When the subsections are small enough,
they snap normally;
when they're longer,
the viewer can scroll arbitrarily within them,
or within a large segment of the top-level section that has no subsections to snap to.
<figure>
<pre class=ascii-art>
┌─ top-level section ─┐ ━┓ ┳ 1 (scroll position = 0)
│ │ 1┃ ┃
│ │ ┃ ┃
│ │ ━┩ ┃
│ │ ┆ ╿
│ │ ┆ │
│ │ ┆ │
│┌─── sub-section ───┐│ ╯ ━┓ ┿ 2
│└───────────────────┘│ 2┃ │
│┌─── sub-section ───┐│ ━┓ ┃ ┿ 3
││ ││ 3┃ ━┛ │
│└───────────────────┘│ ┃ │
│┌─── sub-section ───┐│ ━┛ ━┓ ┿ 4
│└───────────────────┘│ 4┃ │
│┌─── sub-section ───┐│ ━┓ ┃ ╈ 5
││ ││ 5┃ ━┛ ┃
││ ││ ┃ ┃
││ ││ ━┩ ┃
││ ││ ┆ ┃
││ ││ ┆ ╹
││ ││ ┆
│└───────────────────┘│ ┆
└─────────────────────┘ ╯
</pre>
<figcaption>
In the figure above,
the five numbered viewports
represent the five snap positions
associated with the top-level section
and its four subsections.
Because the first and last snap positions are part of ranges taller than the viewport,
the viewer is allowed to scroll freely
between the top and bottom of each range.
Any position in that range is a valid [=snap position=],
which can be snapped to when it is the nearest position;
however, if the element is targetted directly
(such as by a fragment ID or a scrolling API),
the UA will land on the bolded position,
which corresponds to the ideal requested alignment
of the element’s [=snap area=] within the [=snapport=].
</figcaption>
</figure>
Note: If the author had instead set mandatory snap positions
on the <em>headings</em> of each section
(rather than the sections themselves),
the contents of the first and fifth sections
would be partially inaccessible to the user,
as the heading snap area does not extend to cover the whole section.
This is why it's a bad idea to use mandatory snap positions
on elements that might be widely spaced apart.
</div>
<h4 id="unreachable">
Unreachable Snap Positions</h4>
If a <a>snap position</a> is unreachable as specified,
such that aligning to it would require scrolling the <a>scroll container</a>’s viewport
past the edge of its <a>scrollable overflow area</a>,
the <em>used</em> <a>snap position</a> for this <a>snap area</a>
is the position resulting from scrolling <em>as much as possible</em>
in each relevant axis
toward the desired <a>snap position</a>.
<!--
██████ ████████ ███████ ████████
██ ██ ██ ██ ██ ██ ██
██ ██ ██ ██ ██ ██
██████ ██ ██ ██ ████████
██ ██ ██ ██ ██
██ ██ ██ ██ ██ ██
██████ ██ ███████ ██
-->
Scroll Snap Limits: the 'scroll-snap-stop' property {#scroll-snap-stop}
--------------------------
<pre class="propdef">
Name: scroll-snap-stop
Value: normal | always
Initial: normal
Applies to: all elements
Inherited: no
Percentages: n/a
Computed value: specified keyword
Animation type: discrete
</pre>
When scrolling with an intended direction,
the <a>scroll container</a> can “pass over” several possible <a>snap positions</a>
(that would be valid to snap to,
if the scrolling operation used the same direction
but a lesser distance)
before reaching the natural endpoint of the scroll operation
and selecting its final <a>scroll position</a>.
The 'scroll-snap-stop' property allows such a possible <a>snap position</a>
to “trap” the scrolling operation,
forcing the <a>scroll container</a> to stop
before the scrolling operation would naturally end.
Values are defined as follows:
<dl dfn-type=value dfn-for=scroll-snap-stop>
<dt><dfn>normal</dfn>
<dd>
The <a>scroll container</a> may pass over a <a>snap position</a> defined
by this element during the execution of a scrolling operation.
<dt><dfn>always</dfn>
<dd>
The <a>scroll container</a> must not pass over a <a>snap position</a>
defined by this element during the execution of a scrolling operation;
it must instead snap to the first of this element's <a>snap positions</a>.
</dl>
This property has no effect on scrolling operations with only an <a>intended end position</a>,
as they do not conceptually “pass over” any <a>snap positions</a>.
Snapping Mechanics {#snap-concepts}
===================================
The precise model algorithm to select a <a>snap position</a> to snap to
is intentionally left mostly undefined,
so that user agents can take into account sophisticated models of user intention and interaction
and adjust how they respond over time,
to best serve the user.
This section defines some useful concepts to aid in discussing scroll-snapping mechanics,
and provides some guidelines for what an effective scroll-snapping strategy might look like.
User agents are encouraged to adapt this guidance
and apply their own best judgement
when defining their own snapping behavior.
It also provides a small number of behavior requirements,
to ensure a minimum reasonable behavior that authors can depend on
when designing their interfaces with scroll-snapping in mind.
<!--
████████ ██ ██ ████████ ████████ ██████
██ ██ ██ ██ ██ ██ ██ ██
██ ████ ██ ██ ██ ██
██ ██ ████████ ██████ ██████
██ ██ ██ ██ ██
██ ██ ██ ██ ██ ██
██ ██ ██ ████████ ██████
-->
Types of Scrolling Methods {#scroll-types}
------------------------------------------
When a page is scrolled,
the action is performed with
an intended end position
and/or an intended direction.
Each combination of these two things
defines a distinct category of scrolling,
which can be treated slightly differently:
: <dfn export>intended end position</dfn>
::
<div class="example">
Common examples of scrolls with only an <a>intended end position</a> include:
* a panning gesture,
released without momentum
* manipulating the scrollbar “thumb” explicitly
* programmatically scrolling via APIs such as {{Window/scrollTo()}}
* tabbing through the document’s focusable elements
* navigating to an anchor within the page
* homing operations such as the <kbd>Home</kbd>/<kbd>End</kbd> keys
</div>