I am studying the CSS3 flexible model. I checked out MDN's page about it I think I got the general concept but I don't understand how the following properties work:
flex-basis: The CSS flex-basis property specifies the flex basis which is the initial main size of a flex item.
flex-grow: The CSS flex-grow property specifies the flex grow factor of a flex item.
flex-shrink: The CSS flex-shrink property specifies the flex shrink factor of a flex item.
I also tried to tinker with the sandboxes http://demo.agektmr.com/flexbox/ and http://the-echoplex.net/flexyboxes/ linked on MDN but I still wasn't enlightned.
Can you elaborate some explanation on those properties to help understand their meaning?