Skip to content

Latest commit

 

History

History
49 lines (44 loc) · 683 Bytes

snippets.md

File metadata and controls

49 lines (44 loc) · 683 Bytes

Misc CSS snippets

generic html

<div class="container">
  <div class="item">
      Some random text content lorem ipsum et al
  </div>
</div>
  • Centering a div

.container {
  display: flex;
  justify-content: center;
  align-items: center;
}

or

.container {
  display: flex;
  justify-content: center;
}

.item {
  margin: auto;
}
  • Full page content

.container{
  width: 100%;
  height: 100vh;
  background-color: somecolor;
}
  • Responsive page without flexbox

.container {
  margin: 0 auto;
  width: 80%
}