--- title: scroll-snap-points-x slug: Web/CSS/scroll-snap-points-x tags: - CSS - Déprécié - Propriété - Reference translation_of: Web/CSS/scroll-snap-points-x ---
La propriété scroll-snap-points-x
définit le positionnement horizontal des points d'accroche dans le conteneur de défilement auquel ils s'appliquent.
/* Valeur avec un mot-clé */ scroll-snap-points-x: none; /* Répétition des points d'accroche */ scroll-snap-points-x: repeat(400px); /* Valeurs globales */ scroll-snap-points-x: inherit; scroll-snap-points-x: initial; scroll-snap-points-x: unset;
none
repeat(<length-percentage>)
<div id="container"> <div>1</div> <div>2</div> <div>3</div> </div>
#container { width: 200px; overflow: auto; white-space: nowrap; scroll-snap-points-x: repeat(100%); scroll-snap-type: mandatory; font-size: 0; } #container > div { width: 200px; height: 200px; display: inline-block; line-height: 200px; text-align: center; font-size: 100px; } #container > div:nth-child(even) { background-color: #87ea87; } #container > div:nth-child(odd) { background-color: #87ccea; }
{{EmbedLiveSample("Exemples", 220, 220)}}
Cette propriété avait été définie dans un brouillon de spécification pour le module CSS sur les points d'accroche mais a ensuite été retirée de la spécification pour être remplacée par l'accroche basée sur les éléments.
{{cssinfo}}
{{Compat("css.properties.scroll-snap-points-x")}}