最佳答案
Say I'm doing 3 flex columns, first one 50%, the other two auto adjust.
.half {
flex: 0 0 auto ;
width: 50% ;
}
or
.half {
flex: 0 0 50%;
}
These seem to be functionally the same. Are they?