Wpis z mikrobloga

Cześć programirki! Czy jak piszecie style w CSS i staracie się zachować formułę clean clode, to oddzielacie elementy od siebie (sposób pierwszy), czy wszystkie animacje, pseudoelementy etc piszecie pod daną klasą/identyfikatorem (sposób drugi)?

1.

class1{
text-decoration: none;
color: white;
animation: 0.2s linear 0.3s 1 class1-anim;
}

.class2 {
text-decoration: none;
color: white;
animation: 0.2s linear 0.3s 1 class2-anim;
}

@keyframes class1-anim {
0% {opacity: 1;}
100% {opacity: 0;}
}

@keyframes class2-anim {
0% {opacity: 1;}
100% {opacity: 0;}
}

2.

.class1{
text-decoration: none;
color: white;
animation: 0.2s linear 0.3s 1 class1-anim;
}

@keyframes class1-anim {
0% {opacity: 1;}
100% {opacity: 0;}
}

.class2 {
text-decoration: none;
color: white;
animation: 0.2s linear 0.3s 1 class2-anim;
}

@keyframes class2-anim {
0% {opacity: 1;}
100% {opacity: 0;}
}

#programista15k #webdev #css #html
  • 5