For further actions, you may consider blocking this person and/or reporting abuse
For further actions, you may consider blocking this person and/or reporting abuse
codingjlu -
Cassidy Williams -
Alvaro Montoro -
Alvaro Montoro -
Once suspended, nzee will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, nzee will be able to comment and publish posts again.
Once unpublished, all posts by nzee will become hidden and only accessible to themselves.
If nzee is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to Nazim Zeeshan.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community safe. Here is what you can do to flag nzee:
Unflagging nzee will restore default visibility to their posts.
Top comments (12)
Both. They do different things.
Read some of Rachel Andrew's work, and blog posts on CSS Tricks. They will explain it in detail.
Thanks Sally! Will read articles that you have suggested.
Both! Just Flexbox for simple pages, and Flexbox inside Grid for more complex layouts
Thanks, Ben!
Which is your go-to choice for building layouts for your apps. Grid or Flexbox?
I'm moving from Flexbox to Grid, because I knew Grid is now partially supported in Internet Explorer 11...🙂
It requires
-ms-
vendor prefix:Thanks Heddi!
I prefer to use Flexbox on parts of the UI that basically stay the same in any scenario or have limited changes in different responsive behaviours, like for example interaction or input controls. There I usually see no need for using CSS Grid, which is what i tend to use more when it comes to the global (app) layout, that is, the app container, dashboards and the likes.
I use both. It all depends on the use case.
Thanks Nathan!
Flex box for me. IE 11 support for Grid isn’t to crash hot so unfortunately we can’t use it on production sites.
I see, thanks, Joel!