For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
For further actions, you may consider blocking this person and/or reporting abuse
gaurbprajapati -
Asyraf Hussin -
Sergii Syrkin -
Dantechz -
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.
Discussion (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!