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
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
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
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
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