in grid-template-columns, isn't the only thing matter are the proportions between the fractions ? and if so, why do the divs look different when the fractions are higher than 1 vs. smaller than 1 ?
.gizim {
display: grid;
grid-template-columns: 0.3fr 0.4fr 0.3fr;
margin: 5em;
grid-gap: 1em;
width: 400px;
}
.gizim div {
border: 1px solid red;
}
.gizim div:first-child {
width: 100px;
}
.gidoo {
display: grid;
grid-template-columns: 3fr 4fr 3fr;
margin: 5em;
grid-gap: 1em;
width: 400px;
}
.gidoo div {
border: 1px solid blue;
}
.gidoo div:first-child {
width: 100px;
}