Single Responsibility Principle (SRP)
Definition :
Let's take an exemple that does not follow the SRP :
/* <a href="/product" class="promo">Buy now!</a> */
.promo {
display: block;
padding: 20px;
margin-bottom: 20px;
background-color: #09f;
color: #fff;
text-shadow: 0 0 1px rgba(0,0,0,0.25);
border-radius: 4px;
}/* <a href="product" class="island promo">Buy now!</a> */
.island {
display: block;
padding: 20px;
margin-bottom: 20px;
}
.promo {
background-color: #09f;
color: #fff;
text-shadow: 0 0 1px rgba(0,0,0,0.25);
border-radius: 4px;
}Last updated