mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-05-02 17:54:43 +00:00
8 lines
121 B
Text
8 lines
121 B
Text
// Center-align a block level element
|
|
|
|
.center-block() {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|