aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/css/_doublecolon_-webkit-outer-spin-button/index.md
blob: 377583c4a58c1dab2b93c736e49f44c541a2acb9 (plain)
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
---
title: '::-webkit-outer-spin-button'
slug: Web/CSS/::-webkit-outer-spin-button
tags:
  - CSS
  - Non-standard
  - Pseudo-element
  - Reference
translation_of: Web/CSS/::-webkit-outer-spin-button
---
{{CSSRef}}{{Non-standard_header}}

Le pseudo-élément **`::-webkit-outer-spin-button`** peut être utilisé afin de mettre en forme la partie extérieure du sélecteur numérique utilisé pour les éléments {{HTMLElement("input")}} de type `number`.

## Exemples

### CSS

```css
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
```

### HTML

```html
<input type="number">
```

### Résultat

{{EmbedLiveSample("Exemples", 200, 30)}}

## Spécifications

Ce pseudo-élément est un pseudo-élément propriétaire lié à WebKit/Blink, il ne fait partie d'aucune spécification standard.

## Compatibilité des navigateurs

{{Compat("css.selectors.-webkit-outer-spin-button")}}

## Voir aussi

- {{cssxref("::-webkit-inner-spin-button")}}
- {{cssxref("::-webkit-textfield-decoration-container")}}
- [Mettre en forme les contrôles des formulaires – WebKit (en anglais)](https://trac.webkit.org/wiki/Styling%20Form%20Controls#inputelement)