Wie könnte ich 2 mal das gleiche style brauchen? Jetzt habe ich zum beispiel:
.style1{
font-family:Arial;
font-size:20px;
font-weight:600;
}
.style2{
font-family:Arial;
font-size:20px;
font-weight:600;
color:#0000ff; /*extra*/
}
Könnte das auch mit einmal schreiben?
Zum beispiel etwas wie:
.style1{
font-family:Arial;
font-size:20px;
font-weight:600;
}
.style2{
include(.style1) /*?????*/
color:#0000ff; /*extra*/
}