---
title: '::-ms-check'
slug: 'Web/CSS/::-ms-check'
tags:
- CSS
- Non-standard
- Pseudo-element
- Reference
translation_of: 'Archive/Web/CSS/::-ms-check'
---
{{CSSRef}}{{Non-standard_header}}
Le pseudo-élément ::-ms-check
est une extension Microsoft qui représente la marque visuelle d'un élément {{HTMLElement("input")}} de type="checkbox"
or type="radio"
. Ce pseudo-élément n'est pas standard et est uniquement pris en charge par Internet Explorer et Edge.
Propriétés autorisées
Seules certaines propriétés CSS peuvent être utilisées au sein d'une règle dont le sélecteur contient ::-ms-check
. Les autres propriétés seront ignorées.
- {{CSSxRef("-ms-background-position-x")}}
- {{CSSxRef("-ms-background-position-y")}}
- {{CSSxRef("-ms-high-contrast-adjust")}}
- {{CSSxRef("background-clip")}}
- {{CSSxRef("background-color")}}
- {{CSSxRef("background-image")}}
- {{CSSxRef("background-origin")}}
- {{CSSxRef("background-repeat")}}
- {{CSSxRef("background-size")}}
- {{CSSxRef("border-bottom-color")}}
- {{CSSxRef("border-bottom-left-radius")}}
- {{CSSxRef("border-bottom-right-radius")}}
- {{CSSxRef("border-bottom-style")}}
- {{CSSxRef("border-bottom-width")}}
- {{CSSxRef("border-left-color")}}
- {{CSSxRef("border-left-style")}}
- {{CSSxRef("border-left-width")}}
- {{CSSxRef("border-right-color")}}
- {{CSSxRef("border-right-style ")}}
- {{CSSxRef("border-right-width")}}
- {{CSSxRef("border-top-color")}}
- {{CSSxRef("border-top-left-radius")}}
- {{CSSxRef("border-top-right-radius ")}}
- {{CSSxRef("border-top-style")}}
- {{CSSxRef("border-top-width")}}
- {{CSSxRef("box-shadow")}}
- {{CSSxRef("box-sizing")}}
- {{CSSxRef("color")}}
- {{CSSxRef("cursor")}}
- {{CSSxRef("display")}} (valeurs
block
, inline-block
et none
)
- {{CSSxRef("@font-face")}}
- {{CSSxRef("font-size")}}
- {{CSSxRef("font-style")}}
- {{CSSxRef("font-weight")}}
- {{CSSxRef("height")}}
- {{CSSxRef("margin-bottom")}}
- {{CSSxRef("margin-left")}}
- {{CSSxRef("margin-right")}}
- {{CSSxRef("margin-top")}}
- {{CSSxRef("opacity")}}
- {{CSSxRef("outline-color")}}
- {{CSSxRef("outline-style")}}
- {{CSSxRef("outline-width")}}
- {{CSSxRef("padding-bottom")}}
- {{CSSxRef("padding-left")}}
- {{CSSxRef("padding-right")}}
- {{CSSxRef("padding-top")}}
- {{CSSxRef("transform")}}
- {{CSSxRef("transform-origin")}}
- {{CSSxRef("visibility")}}
- {{CSSxRef("width")}}
Syntaxe
selecteur::-ms-check
Exemples
CSS
input, label {
display: inline;
}
input[type=radio]::-ms-check {
/* Le cercle sera rouge comme l'option sera sélectionnée. */
color: red;
/* La bordure de l'élément sera rouge si l'option est sélectionnée */
border-color: red;
}
input[type=checkbox]::-ms-check {
/* La coche sera verte quand la case sera cochée. */
color: green;
/* La bordure de l'élément sera verte si la case est cochée */
border-color: red;
}
HTML
<form>
<label for="redButton">Rouge</label>
<input type="radio" id="redButton"><br>
<label for="greenCheckbox">Verte</label>
<input type="checkbox" id="greenCheckbox">
</form>
Résultat
La capture d'écran à gauche illustre le résultat obtenu avec Internet Explorer ou Edge.
{{EmbedLiveSample('Exemples', '', '', 'https://mdn.mozillademos.org/files/15814/ie11-example.PNG', 'Web/CSS/::-ms-check')}}
Spécifications
Ce pseudo-élément est un pseudo-élément propriétaire lié à Trident/Microsoft et ne fait partie d'aucune spécification.
Compatibilité des navigateurs
Le tableau de compatibilité de cette page a été généré à partir de données structurées. Si vous souhaitez contribuer à ces données, n'hésitez pas à consulter
https://github.com/mdn/browser-compat-data et à nous envoyer une
pull request.
{{Compat("css.selectors.-ms-check")}}