I am looking for a CSS library that contains all the common css best practices.
For example, block alignment style:
.block-center {
margin-left : auto;
margin-right : auto;
}
<div class="myClass block-center" />
I want this library to be distributed as a separate css file that I can add and use in my projects.
source
share