I always learn something new on this channel! I didn't know CSS supported snapping or that overflow scroll behaviour thing, which is handy. For the spacing not being related to the .snaps-inline class. What I always do in these cases is use the multiple class selector, e.g., .media-scroller.snaps-inline and put the property on that. This way, .snaps-inline can be reused and have specific padding (or no padding) for other types of elements. The snap padding also isn't mucking up the .media-scroller. It only applies where both classes are used. PS: I once made an HTML/CSS-only scroller/carousel (more like Netflix with prev/next buttons) with radio buttons and old school HTML/CSS. I used hidden radio buttons before each slide (2 before first slide and none before last slide... explained later) and used labels for the slides that pointed to the radio button before the previous slide. When you clicked on a slide, the before the previous slide would become selected. This way, I could use the :checked + .slide selector to select the previous slide, :checked + .slide + * + .slide to select the current slide, and :checked + .slide + * + .slide + * + .slide to select the next slide. Because each slide was a label, clicking the slide itself took you to that slide, so to have prev and next buttons, I simply had a bit of the previous and next slides showing before and after (respectively) the current slide. I would post the CodePen, but I don't want this comment flagged.
Yeah, I'm thinking of doing something like that as a "next" step on this one actually... it's a fun exploration of CSS combinators and other things which, while it can be a little annoying, they're a fun way to learn. I always get lost within the selectors when making them though, lol. I was thinking of using links with :focus-within to move things around, but your approach might be better.
To be honest I am not fan of css but after following you for almost a year your are changing my thoughts on css and how enjoyable can be working on it , your videos ( not matter the topic ) is clear, easy to understand and supported with great examples . Well done Kevin. And same as everyone looking forward for open props too
Wow. I was already working on creating a horizontal layout and was completely frustrated at not being able to create the way I thought. Thanks to Kevin for creating this video 👍
Kevin Powell is the goat of html and css......thank you sir for providing free content on youtube ......hope you will provide us more content on youtube
Man love this tutorial, the fact that you explain what a particular css property does is amazing. Always needed someone to help me understand what a property actually does. I'll be visiting your channel every now and then for these css tips!
I've been looking for a way to fix the column issue in the grid carousel for ages now! You solved it perfectly. Very nice explanation. Loved your JS tutorial for carousel, it's so nice to understand what each code means!
Bro, you saved my life! i was about to end it cause i couldn't, for the love of God, get the videos to fit properly in the container and it was acting very weird whenever i change display and position to get them in line. Thanks again yo! you the man Kevin!
Wonderful tutorial. I would love to see a part 2, where you get rid of the horizontal scrollbar (visually) on mobile and then add the desktop version with arrows. Netflix all the way.
@@KevinPowell - as an iteration of that, I would love the horizontal scroll to automatically start scrolling when your mouse hovers over it and you use the scroll wheel. ie: no need to press shift and scroll and no need to grab the scroll bar. Without adding JS, the only solution I have found is to rotate the parent 90deg and then the child -90deg. BUT, I have not spent enough time figuring out the CSS to get it to look right. The function is there, it just looks....well....broken. Your insight would be amazing here!
@@DomCos78 I was going to write the same request here - how to create this when your mouse is hovering on scroll then with scrolling down it would scroll right instead.
Yes Please to Open Props!!! Also thank you for this video. I made one by accident a year or so ago with flexbox, but of course the whole page moved. Now I know what to do. Thank you Kevin
This is crazy i was googling like crazy for a good video on this and I cant believe you ended up posting one right away the next day. I LOVE YOUUUUUU !!
There's a little problem for your snaping scroll part for the "alone"' element, with the scroll-snap-align: start, when you're on the last item, you won't be able to snap to it, because it will snap to the "start" of the first element on the right. you need to add :last-child scroll-snap-align: end so you can snap on the last children ;) Doesn't bother the group part normally^^
Wonderful video Kevin, I learned a lot. You explain things very clearly, not only to show us how to do something but telling us why we might want to do something too.
what a perfect guy you are you are using some css I didn't ever hear the name that these properties exist the work you put and its in your brain is like amazing
It's really cool. That been said, if you make say left and right button which scrolls the slider to left and right then there won't be any smooth scrolling effects in Safari. Safari does not support smooth scrolling so it will directly jump to next and previous on button press. That's the reason why in most cases we unfortunately cannot use this in production because these scrollers are usually tired with next/prev buttons and Safari messes that up. Safari is the new IE.
I wouldn't do that because it can be *really* annoying for users. I know it's "easier" in a sense, specially since most users don't know you can horizontally scroll with shift + mouse wheel, but scroll-jacking in general is a dark pattern. I'd rather use JS to add a next and previous button.
@@KevinPowell Wold it be possible to give us an idea on how to achieve this next and previous buttons with JS? Thanks for your super great content, I really enjoy your videos a lot 👏👏👏
This is perfect! Needed to know how to do this and I love how you explain every step in detail. What if I wanted my media to be videos and open in lightbox?
Kevin thanks so much for your awesome job and teaching style. I have learned sooo0 much from you, hands down the best teacher of youtube.. greetings from Portugal! 😘
THANK YOU SO MUCH 23:00 :This is a code if you want to debug your CSS such as highlighting margins paddings outlines.... you need just to override the CSS file to debug //CSS Debugger *:not(path) { color: hsla(210, 100%, 100%, 0.9) !important; background: hsla(210, 100%, 50%, 0.5) !important; outline: solid 0.25rem hsla(210, 100%, 100%, 0.5) !important; box-shadow: none !important; }
The next part of this could be demonstrating increasing the size of a hovered element and not falling foul of overflow-y issues on the 'tracks' above/below. Netflix (desktop) use a modal approach, but don't have drag scroll. Amazon use nested overflows with weird magic number margins.
I'm studying JS and I just need to make such a scroll. I can imagine the algorithm, but I haven't done it yet. I'll watch the video now :) Greetings from Moscow :)
hey great vid but if you could preview the end result of the website or design at the starting of your video would be great, it gives us more reference in what we making, Thanks again Kev.
Open props is kinda like tailwind but it's used in css instead of html. Pretty neat! Have I been putting to much effort in creating my Netflix style scroller 🤔🤯
For the 25% bit, I would make a container on which controls (buttons with arrows for example) are also child of and make that container have margin, with the controls positioned absolutely in that margin. On top of that, the next item would show underneath the controls, so 25 % would be a fine size imo.
Thank you for this! I esp loved the open props. I def want to see that video. Ok, let's face it. I love all of your videos but as far as learning is concerned, that would be the next logical bit of information for me to learn.
Personally I think horizontal scrollers still need a lot of javascript to be usable. In Chrome if you click on scrolbar gray area it will flash through all the elements to the end. This can have bettter behaviour with a "scroll-snap-type: inline proximity". But that only works for a group example and could be buggy if list is loading/adding new items through JS. Another drawback is mouse drag behaviour on laptops. If you don't have 3D wheel mouse (most people don't) you are able to scroll sideways by hitting SHIFT + mouse wheel. And very few people will hit SHIFT + mouse wheel on computer.
I want you to teach everything, seriously. Your teaching style is so good and easy to follow.
Thank you so much :)
Hadn't heard of Open props before, so yes, more explanation would be welcome. Thank you very much Kevin.
I always learn something new on this channel! I didn't know CSS supported snapping or that overflow scroll behaviour thing, which is handy.
For the spacing not being related to the .snaps-inline class. What I always do in these cases is use the multiple class selector, e.g., .media-scroller.snaps-inline and put the property on that. This way, .snaps-inline can be reused and have specific padding (or no padding) for other types of elements. The snap padding also isn't mucking up the .media-scroller. It only applies where both classes are used.
PS: I once made an HTML/CSS-only scroller/carousel (more like Netflix with prev/next buttons) with radio buttons and old school HTML/CSS. I used hidden radio buttons before each slide (2 before first slide and none before last slide... explained later) and used labels for the slides that pointed to the radio button before the previous slide. When you clicked on a slide, the before the previous slide would become selected. This way, I could use the :checked + .slide selector to select the previous slide, :checked + .slide + * + .slide to select the current slide, and :checked + .slide + * + .slide + * + .slide to select the next slide. Because each slide was a label, clicking the slide itself took you to that slide, so to have prev and next buttons, I simply had a bit of the previous and next slides showing before and after (respectively) the current slide. I would post the CodePen, but I don't want this comment flagged.
Yeah, I'm thinking of doing something like that as a "next" step on this one actually... it's a fun exploration of CSS combinators and other things which, while it can be a little annoying, they're a fun way to learn. I always get lost within the selectors when making them though, lol. I was thinking of using links with :focus-within to move things around, but your approach might be better.
To be honest I am not fan of css but after following you for almost a year your are changing my thoughts on css and how enjoyable can be working on it , your videos ( not matter the topic ) is clear, easy to understand and supported with great examples . Well done Kevin. And same as everyone looking forward for open props too
A great addition to any developer. Snap scroll is becoming the in thing requested by more and more clients.
Open props seems like a game changer when it comes to quick prototyping. Would love to see a video on it!
yes me too! :)
Yep
+1
Same
me too!! pls do it for us Kevin
You literally just read my mind. Been looking for a tutorial like this. Much appreciation sir
if you want to remove the horizontal scroll bar, do this
div::-webkit-scrollbar{
display: none;
}
Would love to see a video on open props. This is the first I'm hearing of it but definitely something that seems worth exploring!!
Wow. I was already working on creating a horizontal layout and was completely frustrated at not being able to create the way I thought. Thanks to Kevin for creating this video 👍
oh heck yeah, we need a in-depth video on open props! seems really interesting
Kevin Powell is the goat of html and css......thank you sir for providing free content on youtube ......hope you will provide us more content on youtube
Man love this tutorial, the fact that you explain what a particular css property does is amazing. Always needed someone to help me understand what a property actually does. I'll be visiting your channel every now and then for these css tips!
Yes please! I would gladly dive into watching video about open properties as well! Looks so helpful to boost creativity on projects!
I've been looking for a way to fix the column issue in the grid carousel for ages now! You solved it perfectly. Very nice explanation. Loved your JS tutorial for carousel, it's so nice to understand what each code means!
Nice work KP. Your tutorials make grid less scary. May the force be with you
Bro, you saved my life! i was about to end it cause i couldn't, for the love of God, get the videos to fit properly in the container and it was acting very weird whenever i change display and position to get them in line. Thanks again yo! you the man Kevin!
I was wondering just this morning how to implement snap horizontal scrolling. You’ve saved me a couple of hours work. Perfect timing!
Yes! Please, an open prop would be greatly appreciated
Wonderful tutorial. I would love to see a part 2, where you get rid of the horizontal scrollbar (visually) on mobile and then add the desktop version with arrows. Netflix all the way.
Yeah, thinking about doing a v2 with that, seems like a popular request 👍
@@KevinPowell - as an iteration of that, I would love the horizontal scroll to automatically start scrolling when your mouse hovers over it and you use the scroll wheel. ie: no need to press shift and scroll and no need to grab the scroll bar. Without adding JS, the only solution I have found is to rotate the parent 90deg and then the child -90deg. BUT, I have not spent enough time figuring out the CSS to get it to look right. The function is there, it just looks....well....broken. Your insight would be amazing here!
@@snehithreddy2684 not yet, no. Another 3-4 weeks probably
@@KevinPowell It's been 8 weeks~
@@DomCos78 I was going to write the same request here - how to create this when your mouse is hovering on scroll then with scrolling down it would scroll right instead.
video is great, if anyone is following this video without open props, remember to add on img { max-inline-size: 100%; }
I struggled with scroll snap until I gave up on it. Thank you for demystifying! 🙌🙌
This is giving me tears of joy at the moment. Thanks, Kevin🤩
I've been coding for a little over six weeks now and your videos have really helped me stay encouraged. Thanks, Kevin!
Did you make it?
All hail the CSS King! Thank you for this awesome tutorial good sir!
So good. We have been doing grid for years, but still learn from your videos. Top content for any web app dev.
Yes Please to Open Props!!! Also thank you for this video. I made one by accident a year or so ago with flexbox, but of course the whole page moved. Now I know what to do. Thank you Kevin
This is crazy i was googling like crazy for a good video on this and I cant believe you ended up posting one right away the next day. I LOVE YOUUUUUU !!
Your videos helped me understand CSS better than my teacher tauth me, thanks a lot
the level of excitement that i felt when i saw this video's thumb really tells me that i got my career choice right :)
Kevin is one of those Chad's who strive to improve the lives of many.
Yeah, an Open Props video would be great!
Perfectly what i needed made me fall in love with CSS even more
There's a little problem for your snaping scroll part for the "alone"' element, with the scroll-snap-align: start, when you're on the last item, you won't be able to snap to it, because it will snap to the "start" of the first element on the right.
you need to add :last-child scroll-snap-align: end so you can snap on the last children ;)
Doesn't bother the group part normally^^
Oh, that's a good point 👍
Wonderful video Kevin, I learned a lot. You explain things very clearly, not only to show us how to do something but telling us why we might want to do something too.
An explainer video on open props would be highly appreciated 👍. As always great tutorial
what a perfect guy you are you are using some css I didn't ever hear the name that these properties exist the work you put and its in your brain is like amazing
I will definitely try this out when I can. Love you Kevin!
It's like you read my mind; I've been thinking about this for a few days now! 👀
Oh my god, was looking for it yesterday, you are the man Kevin, thank you so so much!
YES please video on open props
Yeah, and again you made a video just about what i was needing. Thx Kevin. I love to learn with you
It's really cool. That been said, if you make say left and right button which scrolls the slider to left and right then there won't be any smooth scrolling effects in Safari. Safari does not support smooth scrolling so it will directly jump to next and previous on button press.
That's the reason why in most cases we unfortunately cannot use this in production because these scrollers are usually tired with next/prev buttons and Safari messes that up.
Safari is the new IE.
scroll-snap and smooth-scrolling behavior are very different, scroll-snap is supported in Safari :)
I would definitely like to see a video from you on open props
At 1:00 he’s right tho... He really does make you fall madly in love with CSS...
wow, so many new properties I have to Google now! jesus, inline-size!? wtf! thank you so much!
Great Video Kevin, one thing that was missing was scrolling feature where you scroll vertically but that section moves horizontally
Yes that would be great, but I guess for this there would hav to be some JavaScript involved
I wouldn't do that because it can be *really* annoying for users. I know it's "easier" in a sense, specially since most users don't know you can horizontally scroll with shift + mouse wheel, but scroll-jacking in general is a dark pattern. I'd rather use JS to add a next and previous button.
@@KevinPowell Wold it be possible to give us an idea on how to achieve this next and previous buttons with JS? Thanks for your super great content, I really enjoy your videos a lot 👏👏👏
Can't give this video enough thumbs up. 😀There is so much useful information regarding horizontal scrolling, grid layout and scroll snapping.
This is perfect! Needed to know how to do this and I love how you explain every step in detail. What if I wanted my media to be videos and open in lightbox?
I LITERALLY NEED THIS SAME THING
DUDE EVEN I LITERALLY NEEDED THIS EXACT THING! I was wondering why there isn't a single good video on this and BOOM! KP STRIKES
Kevin thanks so much for your awesome job and teaching style. I have learned sooo0 much from you, hands down the best teacher of youtube.. greetings from Portugal! 😘
THANK YOU SO MUCH
23:00 :This is a code if you want to debug your CSS such as highlighting margins paddings outlines.... you need just to override the CSS file to debug
//CSS Debugger
*:not(path) {
color: hsla(210, 100%, 100%, 0.9) !important;
background: hsla(210, 100%, 50%, 0.5) !important;
outline: solid 0.25rem hsla(210, 100%, 100%, 0.5) !important;
box-shadow: none !important;
}
open props video squad
The next part of this could be demonstrating increasing the size of a hovered element and not falling foul of overflow-y issues on the 'tracks' above/below.
Netflix (desktop) use a modal approach, but don't have drag scroll.
Amazon use nested overflows with weird magic number margins.
Thank you sir I always problem faced with horizontal scrolling .
I really like your videos Kevin, am starting to fall in love with css!
I'm studying JS and I just need to make such a scroll. I can imagine the algorithm, but I haven't done it yet. I'll watch the video now :) Greetings from Moscow :)
I always learn something new when I watch your videos. Thank you and keep it up! :)
hey great vid but if you could preview the end result of the website or design at the starting of your video would be great, it gives us more reference in what we making, Thanks again Kev.
East to the west, Kevin remains always the supa best😍
Would be interesting to see how you would add arrows to this, although that probably isn’t css related.
I could not stop myself to subscribe your channel.
Thx for this content 🙏
Omg just the other day I hoped you'd make a video about this!!
As always, great video Kevin!
Open-props seems interresting. I'd appreciate a more deep presentation, plz :)
Thank you Kevin!! This video really helped me with a challenge I have in my project!
Open props is kinda like tailwind but it's used in css instead of html. Pretty neat!
Have I been putting to much effort in creating my Netflix style scroller 🤔🤯
Amazing video, please can you maybe do a part 2 and show how best to produce an infinite horizontal media scroller using just css.
Let's gooooo open-props!!!!
Nice, never new about, this is possible without js!
Many thanks here
For the 25% bit, I would make a container on which controls (buttons with arrows for example) are also child of and make that container have margin, with the controls positioned absolutely in that margin. On top of that, the next item would show underneath the controls, so 25 % would be a fine size imo.
Thank you, Kevin.
this is awesome! I just need to make it responsive with different image sizes for mobile and desktop
Thank you for this! I esp loved the open props. I def want to see that video. Ok, let's face it. I love all of your videos but as far as learning is concerned, that would be the next logical bit of information for me to learn.
Thanks for the great video again! You never disappoint. Would love the open prop video as well~
Personally I think horizontal scrollers still need a lot of javascript to be usable.
In Chrome if you click on scrolbar gray area it will flash through all the elements to the end. This can have bettter behaviour with a "scroll-snap-type: inline proximity". But that only works for a group example and could be buggy if list is loading/adding new items through JS.
Another drawback is mouse drag behaviour on laptops. If you don't have 3D wheel mouse (most people don't) you are able to scroll sideways by hitting SHIFT + mouse wheel. And very few people will hit SHIFT + mouse wheel on computer.
Please create in depth content on open-props
Thanks, I really learnt a lot and I appriciate you channel and videos very much!
P.S: 3:32 I love how you said "auto", and I don't know why.
haha, the fun of slowing down a little as you type words out, lol
As far as i know open-props is a library that is using css props.It would be nice if you could looking into it...
Thanks!
I'm sooooo going to use this! Thank you!
Brutal tutorial!
For aesthetic purposes only, it would be nice if you could show how to hide the fugly horizontal scrollbar in CSS 😉
that was soo good it solved my problem within first 8 minutes thankyou soo much (note : But i watched the whole video :) )
but how did you hide that scrollbard beneath
I needed this like 2 days ago. It's like You hear me XD thanksn
This was super helpful. Cheers.
appreciate it man, THANKYOUUU!!!
Hey Kevin 👋🏻 really liked the video. And open props is useful lib, i'd like see video about it. Specially animations with open props 👀
Thanks Kevin!!! You help me so much! thanks lot!
Kevin thanks , the nice lesson 🎓
this is great, there are a few JS sliders I can get rid of with this.
Hi Kevin! Can you make a more in-depth video about Open Props? It's kinda interesting
thank u sir i just really wanted
this video ❤❤❤
amazing thanks a lot kevin!!
Sir,
Please make video on
Font-size issues comparing crome and firefox
and how to fix it
👆👆 you can reach out to👆 he can help you out he's smart, fast, trustworthy and reliable
Awesome content again! :D
Awesome tutorial.... you always rock....
thanks, Open props
Great tutorial!
thank you for the tutorial!
you saved me kevin
kevin you know we want a vid on open props stop teasing