HTML - Lists
Links
//LISTS
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
<dl>
<dt>Coffee</dt>
<dd>- black hot drink</dd>
<dt>Milk</dt>
<dd>- white cold drink</dd>
</dl>
// CSS
list-style-type: Indica cual es el sÃmbolo que se utiliza como marcador en las listas. Valores que puede tomar son: disc, circle, square, decimal, lower-roman, upper-roman, loweralpha,upper-alpha, none.
list-style-image: img como marcador de lista, toma la ruta del fichero imagen
list-style-position: posicion outside o inside
list-style: list-style-type, list-style-position y list-style-image.