Solved by Flexbox
31–40 of 127 posts
Re: Solved by Flexbox
#32I suspect flex-time will be coming sooner than expected. flexbox is amazing!
Re: Solved by Flexbox
#33Solved by Flexbox creator here. I wanted to add that if you're using flexbox today, you should also check out this other repo of mine: https://github.com/philipwalton/flexbugs A community-curated list of flexbox issues and cross-browser workarounds for them.
Thank you for doing all this, that really helps spreading the word and accelerates web development!
Re: Solved by Flexbox
#34Flex was working out a lot better for me some ten years ago, in Mozilla extensions, as it was. There's just too many rendering glitches and performance problems with flex nowadays, so I've moved on to scripted layout. I just felt that someone should say it.
Re: Solved by Flexbox
#35Flex was working out a lot better for me some ten years ago, in Mozilla extensions, as it was. There's just too many rendering glitches and performance problems with flex nowadays, so I've moved on to scripted layout. I just felt that someone should say it.
What performances issues are you talking about?
Re: Solved by Flexbox
#36Flex was working out a lot better for me some ten years ago, in Mozilla extensions, as it was. There's just too many rendering glitches and performance problems with flex nowadays, so I've moved on to scripted layout. I just felt that someone should say it.
It is an elegant approach to very common layout problems without any libraries, plugins, or javascript.
The whole point of markup and CSS is to solve the layout stuff for you. Javascript should be mainly for data transformation.
When you throw in web components and two-way data binding via object.observe, we can approach this ideal separation of concerns.
Re: Solved by Flexbox
#37Solved by Flexbox creator here. I wanted to add that if you're using flexbox today, you should also check out this other repo of mine: https://github.com/philipwalton/flexbugs A community-curated list of flexbox issues and cross-browser workarounds for them.
Re: Solved by Flexbox
#38Flex was working out a lot better for me some ten years ago, in Mozilla extensions, as it was. There's just too many rendering glitches and performance problems with flex nowadays, so I've moved on to scripted layout. I just felt that someone should say it.
Try writing idiomatic Flex rules based on the latest spec, and then running through PostCSS Autoprefixer. It smoothes out nearly all of the cross-browser glitches. What performances issues are you talking about?
Re: Solved by Flexbox
#39Re: Solved by Flexbox
#40Flex was working out a lot better for me some ten years ago, in Mozilla extensions, as it was. There's just too many rendering glitches and performance problems with flex nowadays, so I've moved on to scripted layout. I just felt that someone should say it.
Can you elaborate on this? What rendering glitches did you encounter?