Hola, jane_135.
De esa menra no podría heredar, porque aunque el nombre es el mismo más un sufijo, en realidad eso no le hace ser pariente; de hecho son nombres diferentes y no tienen ninguna relación.
Lo que se usa en esos casos es unir los dos selectores en el primero y luego marcar la diferencia en el segundo. Me explico:
Cita: .boton-enl, .boton-enl-volver{
margin-left: 400px;
margin-top: 50px;
margin-bottom:40px;
background: url(button2.gif) top left no-repeat;
padding-top: 10px;
width: 111px;
height: 39px;
display:block;
}
.boton-enl-volver{
margin-left: 0px;
margin-top: 0px;
margin-bottom:0px;
}
O más correctamente para mi:
Cita: .boton-enl, .boton-enl-volver{
background: url(button2.gif) top left no-repeat;
padding-top: 10px;
width: 111px;
height: 39px;
display:block;
}
.boton-enl {
margin-left: 400px;
margin-top: 50px;
margin-bottom:40px;
}
.boton-enl-volver{
margin-left: 0px;
margin-top: 0px;
margin-bottom:0px;
}
Mikel.