共有四列,三个间距,间距总宽为60px, 四列每一列减去15px,保持总宽度和父级100%一致
.header{
display: grid;
grid-template-columns: repeat(4, calc(25% - 15px));
grid-column-gap: 20px;
}
共有四列,三个间距,间距总宽为60px, 四列每一列减去15px,保持总宽度和父级100%一致
.header{
display: grid;
grid-template-columns: repeat(4, calc(25% - 15px));
grid-column-gap: 20px;
}