My css is as follows
.content {
display: flex;
flex-direction: column;
gap: 100px;
}
footer {
font-size: 12px;
display: flex;
flex-direction: column;
gap: 50px;
border: 1px solid blue;
}
It seems display flex with gap doesn't work as it works in the browser.
row-gap and col-gap both don't work as well.
.content {
display: flex;
flex-direction: column;
gap: 100px;
}
footer {
font-size: 12px;
display: flex;
flex-direction: column;
gap: 50px;
border: 1px solid blue;
}
It seems display flex with gap doesn't work as it works in the browser.
row-gap and col-gap both don't work as well.