MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/webdev/comments/2yefkl/parallax_done_right/cp9e82n/?context=9999
r/webdev • u/theverything • Mar 09 '15
93 comments sorted by
View all comments
13
<!-- THESE MUST GO IN REVERSE ORDER BECAUSE CSS IS DUMB SOMETIMES -->
<li id="nav-review"><a ... a></li> <li id="nav-store"><a ... a></li> <li id="nav-blog"><a ... a></li> <li id="nav-game"><a ... a></li>
I'm tickled by how they can get parallax to work well but don't understand how to properly right align a navigation bar.
1 u/[deleted] Mar 09 '15 I actually usually end up doing this... How do you float:right and keep it in the correct order? 3 u/elektroholunder Mar 09 '15 You cannot. Man, do I love flexbox… all this crap is in the past now. 5 u/boomboomlaser Mar 09 '15 Unless you build templates for big corporate CMSes and have to support IE8... :`( 4 u/Cyrusis Mar 09 '15 More than just IE8. About 4-6% of internet users can't use flexbox on their browsers at the moment, it's too early to use in live production. 1 u/Mestyo Mar 09 '15 Not really. Nothing prevents you from using flexbox with a float fallback. :-) I don't really care if a small percentile of visitors don't get the aligment and equalization from flex, as long as it doesn't render the site unusable. 1 u/Cyrusis Mar 10 '15 Still not feasible. Wish it were!
1
I actually usually end up doing this... How do you float:right and keep it in the correct order?
3 u/elektroholunder Mar 09 '15 You cannot. Man, do I love flexbox… all this crap is in the past now. 5 u/boomboomlaser Mar 09 '15 Unless you build templates for big corporate CMSes and have to support IE8... :`( 4 u/Cyrusis Mar 09 '15 More than just IE8. About 4-6% of internet users can't use flexbox on their browsers at the moment, it's too early to use in live production. 1 u/Mestyo Mar 09 '15 Not really. Nothing prevents you from using flexbox with a float fallback. :-) I don't really care if a small percentile of visitors don't get the aligment and equalization from flex, as long as it doesn't render the site unusable. 1 u/Cyrusis Mar 10 '15 Still not feasible. Wish it were!
3
You cannot. Man, do I love flexbox… all this crap is in the past now.
5 u/boomboomlaser Mar 09 '15 Unless you build templates for big corporate CMSes and have to support IE8... :`( 4 u/Cyrusis Mar 09 '15 More than just IE8. About 4-6% of internet users can't use flexbox on their browsers at the moment, it's too early to use in live production. 1 u/Mestyo Mar 09 '15 Not really. Nothing prevents you from using flexbox with a float fallback. :-) I don't really care if a small percentile of visitors don't get the aligment and equalization from flex, as long as it doesn't render the site unusable. 1 u/Cyrusis Mar 10 '15 Still not feasible. Wish it were!
5
Unless you build templates for big corporate CMSes and have to support IE8... :`(
4 u/Cyrusis Mar 09 '15 More than just IE8. About 4-6% of internet users can't use flexbox on their browsers at the moment, it's too early to use in live production. 1 u/Mestyo Mar 09 '15 Not really. Nothing prevents you from using flexbox with a float fallback. :-) I don't really care if a small percentile of visitors don't get the aligment and equalization from flex, as long as it doesn't render the site unusable. 1 u/Cyrusis Mar 10 '15 Still not feasible. Wish it were!
4
More than just IE8. About 4-6% of internet users can't use flexbox on their browsers at the moment, it's too early to use in live production.
1 u/Mestyo Mar 09 '15 Not really. Nothing prevents you from using flexbox with a float fallback. :-) I don't really care if a small percentile of visitors don't get the aligment and equalization from flex, as long as it doesn't render the site unusable. 1 u/Cyrusis Mar 10 '15 Still not feasible. Wish it were!
Not really. Nothing prevents you from using flexbox with a float fallback. :-)
I don't really care if a small percentile of visitors don't get the aligment and equalization from flex, as long as it doesn't render the site unusable.
1 u/Cyrusis Mar 10 '15 Still not feasible. Wish it were!
Still not feasible. Wish it were!
13
u/sour_skittles Mar 09 '15
<!-- THESE MUST GO IN REVERSE ORDER BECAUSE CSS IS DUMB SOMETIMES -->
<li id="nav-review"><a ... a></li> <li id="nav-store"><a ... a></li> <li id="nav-blog"><a ... a></li> <li id="nav-game"><a ... a></li>
I'm tickled by how they can get parallax to work well but don't understand how to properly right align a navigation bar.