“Sélection CSS” Réponses codées

Couleur de sélection personnalisée CSS

::selection {
	color: #000000;
	background-color: red;
}

/* for firefox */
::moz-selection {
	color: #000000;
	background-color: red;
}
Inquisitive Ibis

Sélection CSS

::selection {
  background-color: cyan;
}
Victorious Vole

Changer la couleur de la souris Couleur JS

/*** Works on common browsers ***/
::selection {
    background-color: #352e7e;
    color: #fff;
}

/*** Mozilla based browsers ***/
::-moz-selection {
    background-color: #352e7e;
    color: #fff;
}

/***For Other Browsers ***/
::-o-selection {
    background-color: #352e7e;
    color: #fff;
}

::-ms-selection {
    background-color: #352e7e;
    color: #fff;
}

/*** For Webkit ***/
::-webkit-selection {
    background-color: #352e7e;
    color: #fff;
}
Dull Dragonfly

Sélection CSS

/* Make selected text gold on a red background */
::selection {
  color: gold;
  background-color: red;
}

/* Make selected text in a paragraph white on a blue background */
p::selection {
  color: white;
  background-color: blue;
}
Lively Lynx

Sélection CSS

p.normal::selection {
	background: #cc0000;
	color: #fff;
}

p.moz::-moz-selection {
	background: #cc0000;
	color: #fff;
}
Dentetsu

Comment ajouter une sélection dans CSS


<select>
    <option value="tesla">Tesla</option>
    <option value="volvo">Volvo</option>
    <option value="mercedes">Mercedes</option>
</select">

Developers

Réponses similaires à “Sélection CSS”

Questions similaires à “Sélection CSS”

Plus de réponses similaires à “Sélection CSS” dans CSS

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code