Skip to main content

Css




Commands

Search:
Designation 🔼
command
Description
Layout align vertical
align-items: center;
Layout Grid align center
display: flex; justify-content: center;
Layout Grid align left / default
display: flex; justify-content: flex-start;
Layout Grid align left-right
display: flex; justify-content: space-between;
Layout Grid align right
display: flex; justify-content: flex-end;
Layout responsive maxWidth
max-width: 1260px;
selector
body > table {...}
space boxsizing disable
box-sizing: border-box;
space inside element
padding
space inside element
padding: 20px;
to all directions
space inside element
padding: 20px 30px 40px 50px;
up, right, down, left
space outside to other elements
margin
space outside to other elements
margin: 20px;
to all directions
space outside to other elements
margin: 20px 30px 40px 50px;
up, right, down, left
unsorted list, arrange horizontal
display: inline-block;
unsorted list, display no dots
list-style-type: none;