“Li CAMBIO DE COLOR CSS” Código de respuesta

Cómo cambiar solo el color de la bala en CSS

li::before {content: "•"; color: red;
  display: inline-block; width: 1em;
  margin-left: -1em}
Happy Hyena

Cambiar el color de texto li css

/*
li only changes its bullets color, if you want to change
the text, you must use the 'a' tag after the li
*/
li a{
    color: white;
}
DajuSar

Cómo cambiar solo el color de la bala en CSS

li::before {content: counter(li); color: red;
  display: inline-block; width: 1em;
  margin-left: -1em}
Happy Hyena

Li CAMBIO DE COLOR CSS

h1>Todos</h1>
<style>
    
</style>
<ul>
 <li class="done">Walk Chickens</li>
  <li>Clean Out Coop</li>
  <li class="done">Collect Chicken Eggs</li>
  <li>Incubate Chicken Eggs</li>
  <li>Hatch New Chickens!</li>
</ul>
<button id="clear">Clear List</button>
<button>Add Todo</button>
Vivacious Vendace

Respuestas similares a “Li CAMBIO DE COLOR CSS”

Preguntas similares a “Li CAMBIO DE COLOR CSS”

Más respuestas relacionadas con “Li CAMBIO DE COLOR CSS” en CSS

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código