Exploring the world of flex, I came across this interesting line within Bootstrap 4's column classes:
.col-md-4 {
flex: 0 0 33.3333%;
}
I am curious about the properties associated with the values 0 0
. Could you please shed some light on it?