Answers for "gap with flexbox"

CSS
4

flexbox gap

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

row-gap: 10px; /* ⇳ only */
column-gap: 20px; /* ⬄ only */
Posted by: Guest on June-24-2021
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