Thought I knew CSS. Then I discovered this channel. Now I never know how to feel after watching these videos. Happy to have learned something, close to tears when I realize how little I know.
@Dubstepschule3 жыл бұрын
Haha, same here!
@danielesibra21693 жыл бұрын
The same too 😂
@rickyrayrosenberg4202 жыл бұрын
It's like some guy is a better boyfriend to my girlfriend than I am. Kevin is the mac.
@maggpie2862 жыл бұрын
How absolutely fabulous 🤩
@louisik18 ай бұрын
This is still one of the greatest bang for buck methods for arranging elements, especially for older pages/designs that don't have full fledged flex/grid/container implementations. Thanks again Kevin
@oskrm4 жыл бұрын
"My flex grow is making it grow" - 2020 Kevin Powell
@tcritt4 жыл бұрын
weird flex, but ok.
@victorwestmann3 жыл бұрын
You should definitely release more courses on how to use CSS in general. You are a really good teacher.
@soulhazetv Жыл бұрын
Honestly his approach to teaching is by far the best I have come across here on YT. This is game changer..
@safintheship4 жыл бұрын
when Kevin Powell uploads a CSS video you f***ing click it.
@djeudy4 жыл бұрын
Facts!!
@muhammadamir49643 жыл бұрын
Indeed
@benzflynn3 жыл бұрын
204k subscribers can't all be wrong. I hope you boys are making KP _feel the love_ on Patreon . . .
@keshav60973 жыл бұрын
@@djeudy re the point every see esa Re Re ek ek baat
@j.almadhaji4 жыл бұрын
Best Teacher on KZbin 🙏🏻
@fraidoonhu92844 жыл бұрын
So simple, yet profound, a master piece of CSS code. Poetry written in CSS.
@hirumamwf36333 жыл бұрын
The value of knowledge in your whole videos is very expensive. And you gave us for free. Thank you very much.
@aram56424 жыл бұрын
When I started with css 100 years ago, I always wondered why you can center horizontally using margin auto, but not vertically. I love this vertical margin auto that has been made useful at last. This trick is so nifty when you want to align top/bottom some common elements within cards (such as link "Read more")
@Mark.Ritchie3 жыл бұрын
Every time I hear someone say 'em' when they talk, I now always feel they're trying to make a space in the sentence. That and recognising fonts in everyday life are things I'll probably never forget. Thanks css!!
@PHEELL8224 жыл бұрын
What are the freaking odds that I come across this video on my feed while running into this exact problem with centering specific flex items while also pushing a few to the right? Kev you're the best!
@melzz3 жыл бұрын
Woah, my jaw literally open wide while watching this, i never knew those flex trick would make vertical margin auto work. Nice video
@dimensionalpotential3 жыл бұрын
I appreciate that you add the errata , and also that you did it well (timing, and placement)!
@konsciousness4 жыл бұрын
I kinda knew how auto in CSS workes, but now I'm confident. Thanks again, Sir. If you think you have seen enough of CSS. You gotta binge watch Kevin's whole channel.
@RodrigoDAgostino4 жыл бұрын
I learnt a while ago how to use margin: auto with flex-box to move one or several items to the opposite side, but I didn't know you could also use it to center one or some of them too. Thank you very much, Kev! :)
@GaryBarclay4 жыл бұрын
Awesome, you always reveal something over stuff I think I know already. Keep up the great content.
@CarlosChavez-gs1ld Жыл бұрын
Hi Kevin, I have watched many of your videos and they are always well done. I write websites in the raw code (not templates) and have done a good handful of sites. This particular video directly addresses serious headaches I run into with respect actually achieving the spacing I am looking for in my navigations or other list-options areas. I won't bore you with the details of what I have done to make it work (it is WAY too embarrassing). It is the combination of the margin usage you discuss WITH THE "nth-of-type()" selecting you are doing that enables a big reduction in BOTH the amount of CSS and the amount of HTML/Structure required. Thanks again.
@shahzaibkhan54234 ай бұрын
Sir you just rocked. You just cleared our deepest doubt about the flex box. Thank you very much sir 🎉
@avananana3 жыл бұрын
To be fair, this all makes perfect sense when you give it some thought, but I would have never thought about this before seeing this video. I swear to god the knowledge this channel provides regarding CSS is pretty much unrivaled as far as I know, it's great.
@rosemaryvalad-on48883 жыл бұрын
How to be you sir?
@saalimkhan41334 жыл бұрын
The guy teaches CSS fundamental concepts with practical use cases that makes me to watch only CSS videos on entire the KZbin. Even though I hate CSS yet I love to watch his videos. Thanks man!
@mrinmoyghosh17493 жыл бұрын
Best CSS designer you're..... You're always helping me a lot.
@jkevinparker2 жыл бұрын
Kevin, I’m so glad I found your channel! My CSS knowledge was pretty extensive… in 2010. I’ve been out of the game for a while, so I’m learning to unlearn the hacks I’d learned to overcome Internet Exploder and other limitations. CSS seems to finally be mature, though I’m happy with how much of my old learning still applies!
@monsieurm29044 жыл бұрын
Magicien of CSS !
@thrasosthrasos73533 жыл бұрын
In such cases it is more flexible to use a few dummy elements (does not render anything) and to insert them on those places where space should be taken (for example class="takeSpace") with style "flex-grow: 1;". This approach will work as expected when new link is inserted in the middle. Also it is possible to redistribute space in more flexible way by using different flex-grow values.
@cintron3d4 жыл бұрын
Using display flex to give margin auto super powers I love it. Did not know about that unique behavior.
@piromaniaco35794 жыл бұрын
You did it again!! Your channel is the top of top. Thanks Kev!
@Dimitar-T-Radev3 жыл бұрын
I love how happy he gets when saying "That's awesome". It's like watching Simon from Cracking the Cryptic finding his solution.
@heitorlessa27153 жыл бұрын
This became my favourite channel to learn CSS - Practical, great didactic, and to the point
@ThePhidge3 жыл бұрын
Hey Kevin!! Sorry I'm so late to the party, but just wanted to let you know how much your videos are helping me out. I'm very new to the whole html/css/js thing, so tend to learn something new from any video I watch, but I find your way of explaining things and the level of detail you include seems to increase my understanding so much more. Thank you!
@conalbirtles37204 жыл бұрын
Great work! From a practical application point of view, the only suggestion I would make would be to add margin-left: auto to li:nth-last-child(2) instead of li:nth-of-type(6) because it's much more likely that a client will want to add another item to the middle 'site menu' than to the right hand 'login menu'. The way it's set up now, if you were to add, let say 'Shop' to that middle menu, the layout would break. (You'd also need to change nth-of-type(7) to nth-last-child(1) but that probably goes without saying)
@olivernygren29674 жыл бұрын
Your channel is so helpful and you make everything so easy to understand. Much appreciated and please keep the content coming!! Sincerely, Front end developer student in his first week :)
@amrani_art4 жыл бұрын
Didn't know flex-grow also works vertically. I was using height:100vh instead. Thanks for the tip!
@PolishPolackski Жыл бұрын
Kind of first day at work and I did shine like a hero. A day, or two ago I watched THIS very video. Flex -> margin-top:auto did magic in Woo's tile.
@vasylbats25444 жыл бұрын
Yes, I use such margins all the time in the flex boxes in my practice. Thanks, Kevin!
@malamhari_3 жыл бұрын
I see why sometimes my margin didn't work properly, display:flex is the cause! Thanks
@emkisn4 жыл бұрын
I didn't learn anything from this video, but WHAT A GREAT VIDEO! I need to say that you are killing it at the content quality. I follow you channel for at least 2 years from now, and i need to give some feedback. The quality of the videos, the editing, the timing, its much more robust, you are really doing an amazing job, congratulations a lot. This tips and simple exemples help a lot, keep doing. Sometimes the subject of the video is not a new topic for me, but i always try to watch, just for the channel support, best regards. (sorry my noobie english)
@ОлегПузанкін3 жыл бұрын
Thank you man, good tricks for beginners to simplify markup just using margin property
@afsanazamannipa77114 жыл бұрын
WOW, that's really cool. There are more things to use margin auto in CSS. Thanks a lot for the video.
@haldanegreen4232 жыл бұрын
Def learnt more than a couple things, thanks as always Kevin, the way you explain the markup is awesome
@daver32703 жыл бұрын
You're a great instructor Kevin. Thank you
@YokoYoko_2 жыл бұрын
I am currently learning the basics of CSS and this video gave me more motivation to go forth. So many crazy stuff that can be done with CSS!
@kimokimo-se3ur4 жыл бұрын
thank you , great teacher !! love from Tunisia .
@lowercaseguy35784 жыл бұрын
you're awesome! i always stuck with floats , now its very easy.
@noclistify4 жыл бұрын
I love this one, thanks for the content Kevin.
@arminmatthes2 жыл бұрын
Wow, thanks for reminding me that you could actually center with margin:auto. I pretty much only use flexbox these days for centering. The good old times :D
@cretik_shmurda2 жыл бұрын
I used to do divs and was overwhelming. Thanks powell
@MrEvansjethro3 жыл бұрын
That's powerful, Powell. Perhaps I should say a Powellful CSS margin usage indeed.
@caffeinated-pixels3 жыл бұрын
Ah, super useful, particularly for the vertical positioning!
@yashkanekar69773 жыл бұрын
hello Kevin , I honestly just want to thank you enough ;u are doing such a wonderful job. I have been through your responsive layout course, it has made me better. I hope you never stop!!!! Thank you so very much!
@HaraldEngels4 жыл бұрын
Brilliant! Thank you. After doing CSS since 20 years I learned something new today :-)
@abhishek.rathore4 жыл бұрын
Your the only one who actually understands and can explain CSS. I just keep typing trash until it looks like I want it to.
@RaiderBV4 жыл бұрын
Something to keep in mind though, that this example depends on a static page. If you'd add any navigation elements it would mess up all indices. Still very interesting and useful tool.
@TheMrblaster20122 жыл бұрын
hi, what do you mean by navigation elements?
@riktigaoakis2 жыл бұрын
I have always used backgrounds when doing layout. It just makes it a lot easier to see what is happening. ✌️
@alibarznji20003 жыл бұрын
Never have I ever had a hard time learning something other than CSS.
@hafpixels41724 жыл бұрын
I'm really thankful for this. What I needed
@brootaylor4 жыл бұрын
Brilliant stuff Kevin. You've got a gift for explaining things simply and succinctly. Keep up the fab work and much appreciated.
@TerranceShaw4 жыл бұрын
Continue to love your stuff, Kevin! This definitely helped far more eloquently solve a problem I've had to hack together in the past. Keep up the awesome!
@degagnemarc3 жыл бұрын
Merveilleux! Just the solution I for a problem I had! Thanks
@muhammadamir49643 жыл бұрын
Thanks Kevin for sharing your knowledge. It is very painful to learn on your own such effects but you make these things very simple and easy. Thanks
@arunh33 жыл бұрын
I don't think I have subscribed to channel after watching just 2 videos, but this content is just really good and very well explained, so I subscribed. I am more of a backend person and gets tripped up with css sometimes so these videos are great for me.
@Will-cn7vg4 жыл бұрын
Thanks Kevin! Extremely helpful as always
@onestepwebdev4 жыл бұрын
Thanks Kevin, that's very awesome of you to do this quick Tut. Using Flex-box on a sidebar is a stroke of genius, what else should I have expected. How about drop-down menus inside the menu. Obviously, sub-lists would be one way.
@codesader4 жыл бұрын
Awesome content as always. Got better clarity.
@Mwtorres892 жыл бұрын
you need to 100 percent release a UDEMY course for begginers from start to finish from basic HTML / CSS and maybe some Javascript. I would 100 percent purchase it.
@ibelong2u4 жыл бұрын
This is brilliant! I'm fantasizing about all the fun I can have with this and media queries. Thank you for sharing.
@GlaucoGodoi4 жыл бұрын
Super useful !Thank you Kevin !
@fabianpetersen2452 Жыл бұрын
Hi Kevin, really loved this video. I always get stuck wih CSS and this helped me alot to understand how this all works. 👍
@ramyfares814 жыл бұрын
It's been long since I've learned something new so cool in CSS. It's amusing to always know that there's something new to learn.
@kalokanev2 жыл бұрын
I have recently found your tutorial. You are doing a great job! Keep up the good work, Kevin!
@nicbongo4 жыл бұрын
This is amazing for accessibility. The amount of time I've spent wrapping content in parent elements to ensure flex or grid is inherited... You can remove so much unnecessary divs and other container tags. Great content, I'll be using this first thing tomorrow for my project, thanks!
@AyDeeSandra4 жыл бұрын
Same thing I said to myself. Lighter DOM, faster render tree
@jameslesperance13 жыл бұрын
You have really helped me. Thank you!
@rohitpurkait69513 жыл бұрын
You are really " The King of CSS "
@benzflynn3 жыл бұрын
Great vid. Very handy feature. Thanks, KP.
@joyvideos18024 жыл бұрын
Cool options with margin, Thanks Kevin❤
@n36u1a3 жыл бұрын
thank you Kevin for making my corner of the internet a little bit more awesome ;)
@k3tna4 жыл бұрын
Incredible. Thanks Kevin.
@dennyyap81842 жыл бұрын
Appreciated for sharing Kevin👍🙏 it is really useful.
@djlee07214 жыл бұрын
Kev you easily deserve 1 million + subscribers. Thanks again for this great video!
@RangelNetto4 жыл бұрын
Oh fucking God, a new css trick(I have no idea if it's really new, but, I didn't know until this video). Every day I need to learning something new... But I still loving css SZ. Thank you for sharing.
@th-shubham2 жыл бұрын
12:43 pretty awesome
@Akimb3213 жыл бұрын
Thank you for these videos, they're really great
@aebek14132 жыл бұрын
your videos are well structured and good , keep up the great work you are great teacher.
@HARIKRISHNANSRSRSHD4 жыл бұрын
Kevin, your tutorials are awesome..!
@AJ-1404 Жыл бұрын
Thank you Kevin
@infosandfacts75364 жыл бұрын
Great stuff as positioning options are always very welcome.
@bintangnaufal Жыл бұрын
No need to div the nav again! awesome!
@mounir1014 жыл бұрын
Pretty awesome! Thank you.
@oliver1393 жыл бұрын
Your tutorials are really awesome
@semiloreidowu46013 жыл бұрын
To say I'm wowed seems like the understatement of the century😮
@Uthael_Kileanea2 жыл бұрын
When I rewatch this video, I might finally know how to center a div.
@pablobarrientos20712 жыл бұрын
Another day, another thing to learn about CSS from the master!
@TheCocoaDaddy4 жыл бұрын
Awesome video! Very useful!!! Thanks for posting!
@m.biplav4 жыл бұрын
Been learning so much from you, you're amazing!
@AkkaldeviVivek4 жыл бұрын
bro, you're awesome
@abdelmonemnaceur77764 жыл бұрын
You deserve much more subscribers and thumbs up, Keep it up!
@ari_archer3 жыл бұрын
what's the differance between and ?
@alexftw3562 жыл бұрын
well i needed that. thank you
@clintongallagher Жыл бұрын
I use background-color: on just about anything --*but*-- unlike Kevin I do not delete the entire statement when I think I don't need it any more. I change the value to transparent so I can use it again.