Flexbox & Responsive Design

CDNJS hosts CSS and Javascript files... https://cdnjs.com/libraries/normalize

Meta Viewport Tag

  • No more pinch-to-zoom!
  • <meta name="viewport" content="width=device-width, initial-scale=1">

Grid System

Psuedo Classes

Flexbox Example CSS

body {
  min-height: 100%;
  font: 14px Comic Sans MS;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 auto;
}

header, footer {
  width: 100%;
  background: navy;
  color: white;
  text-align: center;
  line-height: 20px;
}

main {
  display: flex;
  justify-content: space-around;
}

section {
  text-align: center;
  padding: 25px;
  border-radius: 25px;
  background: pink;
  color: black;
  min-height: 50px;
  width: 250px;
  justify-content: space-around;
}

results matching ""

    No results matching ""