Hacker News new | ask | show | jobs
by ablerman 4774 days ago
This is something that Flex excels at. Perhaps the only thing that I really miss.

For instance, in flex, to do a 3 column layout, I could do something like:

  <HBox>
     <VBox width="33%">
       [Content]
     </VBox>
     <VBox width="33%">
       [Content]
     </VBox>
     <VBox width="33%">
       [Content]
     </VBox>
  </HBox>
1 comments

I guess I'm not really understanding this thread, because doesn't virtually any CSS grid system give you the same capability?
Grid systems give you the ability to express things in terms of, well, grids - the components of the grid would not overlap. I didn't see anything in Bootstrap or Foundation that would help me position overlapping elements effectively, e.g. a stack of playing cards with each card offset vertically from the previous one.