Re: [css-d] Flex issue/question

2019-03-04 Thread Tom Livingston
I'm good on using the order property, my issue is how I can get 3 divs to go from 1 stacked column to 2 columns on desktop. Can I do that with flex? 1 2 3 becomes: 21 3 2 being it's own column, 1 and 3 stacking in a second column. On Sat, Mar 2, 2019 at 8:01 AM Wade Smart w

Re: [css-d] Flex issue/question

2019-03-04 Thread Wade Smart
flex grow. -- Registered Linux User: #480675 Registered Linux Machine: #408606 Linux since June 2005 On Mon, Mar 4, 2019 at 10:30 AM Tom Livingston wrote: > > I'm good on using the order property, my issue is how I can get 3 divs to > go from 1 stacked column to 2 columns on desktop. Can I do th

Re: [css-d] Flex issue/question

2019-03-04 Thread Tom Livingston
I'm afraid I'll need a little more info than that. On Mon, Mar 4, 2019 at 11:40 AM Wade Smart wrote: > flex grow. > -- > Registered Linux User: #480675 > Registered Linux Machine: #408606 > Linux since June 2005 > > On Mon, Mar 4, 2019 at 10:30 AM Tom Livingston wrote: > > > > I'm good on using

Re: [css-d] Flex issue/question

2019-03-04 Thread Wade Smart
As your page grows from mobile to desktop you would assign your 2nd column order and grow properties. 2 would either grow at a expanded rate constantly pushing the column out to the side or be a constant. You could also tackle this in a totally different way: with your php code (or whatever logic

Re: [css-d] Flex issue/question

2019-03-04 Thread Tom Livingston
The only way, so far, that I've been able to get close was using flex-direction: column; and assigning a fixed height to the parent causing the children to wrap, which is not something I want to do for obvious reasons. Fixed heights are rarely a good idea. On Mon, Mar 4, 2019 at 11:48 AM Wade Sma