Inscrivez-vous ou connectez-vous pour rejoindre votre communauté professionnelle.
<head>
<style>
input:required {
background-color: yellow;
}
</style>
</head>
<body>
<p>An optional input element:<br><input></p>
<p>A required input element:<br><input required></p>
</body>