Answers for "how to give gap in flex"

CSS
4

flexbox gap

gap: 10px 20px; /* ⇳ and ⬄ */

row-gap: 10px; /* ⇳ only */
column-gap: 20px; /* ⬄ only */
Posted by: Guest on June-24-2021
0

add space between flex items

.flex-gap {
  display: inline-flex;
  flex-wrap: wrap;
}

.flex-gap > div {
  margin: 6px; /* HERE WE ADD THE SPACE */
}
Posted by: Guest on June-15-2020
0

css column gap flex

div{
    	column-count: 3;
        column-gap: 30px;
        background: yellow;
}
Posted by: Guest on September-06-2021

Browse Popular Code Answers by Language