Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. CSS
  3. Reference
  4. Properties
  5. scroll-margin-block-end

Dieser Inhalt wurde automatisch aus dem Englischen übersetzt, und kann Fehler enthalten.Erfahre mehr über dieses Experiment.

View in EnglishAlways switch to English

scroll-margin-block-end

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2021.

Die Eigenschaftscroll-margin-block-end definiert den Rand des Scroll-Snap-Bereichs am Ende der Block-Dimension, der verwendet wird, um dieses Element an denSnapport zu schnappen. Der Scroll-Snap-Bereich wird bestimmt, indem der transformierte Rahmenkasten genommen, dessen rechteckiger Begrenzungskasten (achsenbündig im Koordinatenraum des Scroll-Containers) gefunden und dann die angegebenen Ausdehnungen hinzugefügt werden.

Probieren Sie es aus

scroll-margin-block-end: 0;
scroll-margin-block-end: 20px;
scroll-margin-block-end: 2em;
<section>  <div>    <div>1</div>    <div>2</div>    <div>3</div>  </div>  <div>Scroll »</div></section>
.default-example .info {  inline-size: 100%;  padding: 0.5em 0;  font-size: 90%;  writing-mode: vertical-rl;}.scroller {  text-align: left;  height: 250px;  width: 270px;  overflow-y: scroll;  display: flex;  flex-direction: column;  box-sizing: border-box;  border: 1px solid black;  scroll-snap-type: y mandatory;}.scroller > div {  flex: 0 0 250px;  background-color: rebeccapurple;  color: white;  font-size: 30px;  display: flex;  align-items: center;  justify-content: center;  scroll-snap-align: end;}.scroller > div:nth-child(even) {  background-color: white;  color: rebeccapurple;}

Syntax

css
/* <length> values */scroll-margin-block-end: 10px;scroll-margin-block-end: 1em;/* Global values */scroll-margin-block-end: inherit;scroll-margin-block-end: initial;scroll-margin-block-end: revert;scroll-margin-block-end: revert-layer;scroll-margin-block-end: unset;

Werte

<length>

Ein Überstand vom Block-Endrand des Scroll-Containers.

Formale Definition

Anfangswert0
Anwendbar aufalle Elemente
VererbtNein
Berechneter Wertwie angegeben
Animationstypby computed value type

Formale Syntax

scroll-margin-block-end =
<length>

Spezifikationen

Specification
CSS Scroll Snap Module Level 1
# margin-longhands-logical

Browser-Kompatibilität

Siehe auch

Help improve MDN

Learn how to contribute Diese Seite wurde automatisch aus dem Englischen übersetzt.

[8]ページ先頭

©2009-2026 Movatter.jp