Foro de elhacker.net

Programación => Desarrollo Web => Mensaje iniciado por: Nsyachson en 23 Octubre 2015, 20:41 pm



Título: como cambiar biñetas <li>
Publicado por: Nsyachson en 23 Octubre 2015, 20:41 pm
estoy haciendo un lista de emisoras en vivo y me gusta ponerle como bineta un parlante o una flecha algo asi.
 espero su pronta respuesta  gracias.

<ul>
  <li><a href="#">Elemento 1</a></li>
  <li><a href="#">Elemento 2</a></li>
  <li><a href="#">Elemento 3</a></li>
  <li><a href="#">Elemento 4</a></li>
  <li><a href="#">Elemento 5</a></li>
  <li><a href="#">Elemento 6</a></li>
</ul>


Título: Re: como cambiar biñetas <li>
Publicado por: 0roch1 en 23 Octubre 2015, 20:56 pm
Con CSS puedes hacerlo.

Código
  1. ul {
  2.    list-style-image: url('vineta.gif');
  3. }
  4.