Estoy tratando de diseñar los números en una lista ordenada, me gustaría agregar color de fondo, radio de borde y color para que coincidan con el diseño con el que estoy trabajando:
Supongo que no es posible y tendré que usar diferentes imágenes para cada número, es decir
ol li:first-child {list-style-image:url('1.gif')};
ol li:nth-child(2) {list-style-image:url('2.gif');}
etc...
¿Existe una solución más sencilla?
html
css
html-lists
sprite
Pixelomo
fuente
fuente
Respuestas:
Puede hacer esto usando contadores CSS , junto con el
:before
pseudo elemento:ol { list-style: none; counter-reset: item; } li { counter-increment: item; margin-bottom: 5px; } li:before { margin-right: 10px; content: counter(item); background: lightblue; border-radius: 100%; color: white; width: 1.2em; text-align: center; display: inline-block; }
<ol> <li>item</li> <li>item</li> <li>item</li> <li>item</li> </ol>
fuente
counter-reset: item;
debe ir en el bloque ol, de lo contrario el contador no se restablecerá en anidada <ol>.li
elemento tiene más de una línea?50%
paraborder-radius
(en lugar de100%
) es suficiente para obtener un círculo. (Ver, por ejemplo, Lea Verou, " El curioso caso de radio de borde: 50% ", 30 de octubre de 2010.)li
position: relative;
, y luego:before
darías esoposition: absolute;
y luego usaríastop
yleft
colocarlo exactamente como quieras.Estaba buscando algo diferente y encontré este ejemplo en CodePen;
prueba esto: http://codepen.io/sawmac/pen/txBhK
body { font-size: 1.2em; font-family: "Helvetica Neue", Helvetica, sans-serif; margin: 50px; } .custom-counter { margin: 0; padding: 0; list-style-type: none; } .custom-counter li { counter-increment: step-counter; margin-bottom: 5px; } .custom-counter li::before { content: counter(step-counter); margin-right: 20px; font-size: 80%; background-color: rgb(180, 180, 180); color: white; font-weight: bold; padding: 3px 8px; border-radius: 11px; }
<ol class="custom-counter"> <li>This is the first item</li> <li>This is the second item</li> <li>This is the third item</li> <li>This is the fourth item</li> <li>This is the fifth item</li> <li>This is the sixth item</li> </ol>
fuente