Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

how to create seprate flex box for adding items into the box

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.item {
  width: 32%;
  padding-bottom: 32%; /* Same as width, sets height */
  margin-bottom: 2%; /* (100-32*3)/2 */
  position: relative;
}
Source by tobiasahlin.com #
 
PREVIOUS NEXT
Tagged: #create #seprate #flex #box #adding #items #box
ADD COMMENT
Topic
Name
3+8 =