Wildcard CSS
If you want to add the same css selectors to a bunch of classes like (grid-1, grid-2, grid-3, grid-20), then no need to mention them one after the other.
Just write some css like this
[class*=”grid-“]{
float:left;
padding:0px;
margin:0px;
}