Hola,
Estoy intentando quitar ciertos atributos con first-child (y last-child cuando se vea desde móviles) pero no logro hacerlo funcionar.
Código CSS:
Ver original.precio {
float: right;
font-size: 10px;
color: #868686;
text-align: right;
margin-right: 20px;
padding-right: 20px;
border-right: 1px solid #E0E0E0;
}
.precio strong {
font-size: 16px;
color: black;
display: block;
font-weight: 500;
}
.precio:first-child {
margin-right: 0px;
padding-right: 0px;
border-right: 0px;
}
Espero que puedan ayudarme.