Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 312 Bytes

center.md

File metadata and controls

30 lines (22 loc) · 312 Bytes
description
Put element in Center

Center

Syntax (custom)

```other code
    center : "center",
```

Syntax

.center

Puts element in center horizontally

Compiled as

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 40%;
}