Is it possible to create CSS classes containing other Bootstrap classes? I already researched but I did not find anything about it.
Something like:
.minhaclasse {
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
cursor: default;
background-color: #dff0d8;
border-bottom-color: transparent;
}
}
.minhaclasse2 {
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
cursor: default;
background-color: #dff3d8;
border-bottom-color: transparent;
}
}
But it is not. :
What is it like?