1 // Center-align a block level element
2
3 .center-block() {
4 display: block;
5 margin-left: auto;
6 margin-right: auto;
7 }