Usuario:Ignacio Rodríguez/estilos.css

/* Estilos para experimentar en taller */

/* Estilo para diccionarios "en línea" */

.test1 dt {
	display:inline;
	font-weight:normal;
}
.test1 dd {
	display: inline;
	margin-left: 0;
}
.test1 dt:before{
	content:"";
	display:block;
}
.test1 dt:after{
	content:":";
}

/* test 2 */

.test2 dl {
	counter-reset: dt-count;
}
.test2 dt:before{
	content: counter(dt-count) ". ";
	counter-increment: dt-count;
	font-weight: normal;
}
.test2 dt {
	float:left;
}