I've come across many article talking about it but I need some enlightenment. Help
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.
I've come across many article talking about it but I need some enlightenment. Help
For further actions, you may consider blocking this person and/or reporting abuse
Eluda -
Sloan -
Nazmuz Shakib Pranto -
VÃctor Falcón -
Once suspended, olimpioadolfo will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, olimpioadolfo will be able to comment and publish posts again.
Once unpublished, all posts by olimpioadolfo will become hidden and only accessible to themselves.
If olimpioadolfo 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 Olimpio.
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 olimpioadolfo:
Unflagging olimpioadolfo will restore default visibility to their posts.
Discussion (2)
It's pretty much the same idea as media queries, only based on the container width instead of the viewport size.
The idea is to build responsive components that can be reused in different webs/apps that might serve them in a great variety of layouts.
There are some concerns like circular dependencies that are preventing CSS from building that kind of stuff, but the CSS working group is already proposing some solutions that we might enjoy in the future.
As for right now, for some simple things we can get away with using the flex-grow:9999 hack or some of grid's repeat(auto-fit, minmax()) magic. For more complex stuff, the best approach so far is using a little bit of JS with the Intersection Observer API, as Philip Walton's Responsive Components
Ohhh. Seems amazing... Thanks...