Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

display flex css

.flex-container {
  display: flex;
  background-color: DodgerBlue;
}

.flex-container > div {
  background-color: #f1f1f1;
  margin: 10px;
  padding: 20px;
  font-size: 30px;
}
/* A Flexible Layout must have a parent element with the
display property set to flex. Direct child elements(s) of
the flexible container automatically becomes flexible items.   */
Source by css-tricks.com #
 
PREVIOUS NEXT
Tagged: #display #flex #css
ADD COMMENT
Topic
Name
3+8 =