I'm very new to basic coding, I would just like to say that while I'm doing this off my own back with no one teaching me. Watching and listening to your videos really helps. It's brilliant. Thank you for your time and sharing you knowledge.
@sentionmusic9 ай бұрын
I have seen so many dev videos and never know what they are talking about because they don't know how to explain things. THIS IS THE FIRST CHANNEL I CAN UNDERSTAND AND LOVE. thank you
@l-fitness35905 ай бұрын
Best place to learn stuff is honestly is Udemy when they have deal on pick up courses on topics that your interested in
@myartikool10 ай бұрын
I think this part of making websites is pretty easy and was quite intuitive for me. The difficulty starts when you need to preemptively think how everything would behave on different screen sizes before you even start doing CSS. This is probably gonna get easier only after lots of practice but so far I'm still straggling with it. Especially when pixel perfect is needed.
@benfrese357310 ай бұрын
Yeah, and the graphical design aspect has become a lot more complex as well. Design *has* to work now, and a lot of my challenges in day to day work are from finding layout and interface solutions.
@ImperiumLibertas10 ай бұрын
One strategy to help alleviate some of the challenging parts is to develop for a mobile device first as there are more constraints for mobile views. Reverse engineering the desktop screens from the mobile views is typically easier.
@myartikool10 ай бұрын
@@ImperiumLibertas I've noticed that even when I do desktop-first I still end up refactoring media queries as if it was mobile first. It's just where I'm from desktop-first is the default approach.
@artibaraku407010 ай бұрын
I wanted this video for a long time, but you made it as if you knew what we were missing. Thank you Kevin.
@JimKernix10 ай бұрын
Your free "Conquering Responsive Layouts" course mage responsive design super easy for me. I don't even have a problem with that since taking that course a few years ago.
@KevinPowell10 ай бұрын
So glad to hear that!
@isaacAtaliba4 күн бұрын
Seriously, thank you so much for this video! I’ve been struggling with responsive layouts for a while, and you explained everything in such a simple and relatable way. It finally clicked! I’m so grateful you took the time to make this. Hugs from brazil
@skillsvsdegree61399 ай бұрын
You achieved your goal. I am new to frontend, only 2 months old, like I'm a baby. This video made me feel like CSS is a toy, not a boogeyman. I need CSS for my dream project I started to develop, and thanks to you to make me feel better with CSS. Hope most of the videos are like this, simple, straight to the point. subscribing.
@kylewilson8819 күн бұрын
Good luck on your project, if you didn't already start on it
@D7460N10 ай бұрын
Well said, sir. HTML is responsive by default. It's not CSS' fault that things are not responsive. It's our fault for writing CSS or using a lib or framework that cause things NOT to be responsive. Set width/height as a last resort for intrinsic design. Less is more.
@RobertoRamirezArteaga2 ай бұрын
I am literally doing a lot of stuff. One internship (32 hours a week , non-paid) one shift at other job( 8 hours a week) and cs degree final year. These are the videos that make me able to continue with this huge workload . Thank you so much to make my life easier.
@juwhankim61877 ай бұрын
I simply love the tone and accent of the voice. Again, I realize how much important tonal impression is, not only the content when it comes down to educational stuff.
@kevbonett10 ай бұрын
Some really great (and simple) advice. Mainly around not declaring stuff until you need to, and letting the browser do what it does best!
@DanteMishima10 ай бұрын
"It is us who break the responsiveness of the web" - Kevin Powell, Conquering Responsive Layouts
@nextleveltech2677 күн бұрын
Sir.. I just implemented some of the tips you gave. It really really helped me a lot. Thanks a ton❤❤❤❤❤❤
@nathanm28917 ай бұрын
I love your videos. I remember you talking about adding complexity as the screen grow a while back. It really changed my view on styling layouts.
@GhostWithAHoodie10 ай бұрын
I just wanted to thank u mr Powell, i started to learn web development, and your content is amazing it helped me a lot.
@Mynamewashere5 ай бұрын
This video is solving my PTSD from trying to figure out responsive design while trying to finish my school project at the last minute. It's almost like you can see inside my head. Thank you.
@cseymour9710 ай бұрын
Viewport units are great. I love using them within a clamp on all my text sizes to make them fluid! Has worked well over the years!
@ilogbc30909 ай бұрын
How do you do that? At the root?
@cseymour979 ай бұрын
@@ilogbc3090 just when I'm defining text sizes. For example h1 could be something like h1{font-size: clamp(1.25rem, 2vw + 1rem, 2rem);} Doing that will define your min and max text sizes and then anything in between will be relative to the screen size.
@suziewilliams31945 ай бұрын
I came across your channel recently. I must admit, your videos, knowledge and teaching skills are over the top. You know your advanced css, you teach what's needed. You don't teach unnecessary styling just for creating a video sake. Keep doing what you're doing. Can you please create a guide or topics list for us to learn advanced CSS better please
@Nawrotlearnscoding10 ай бұрын
Your take on media queries is a game-changer for me. From now on, I will try to use them more sparingly to avoid overcomplicating things. Thanks a lot, Kevin!
@Tiger__Man9 ай бұрын
I used to follow avoid using fixed width and height and it worked perfectly
@meowthemmd10 ай бұрын
CSS just ends in Mr. Powell's channel we don't need anyone else teaching CSS; fascinating, THANKS.
@jcchaconjr6 ай бұрын
This video was so insightful! I’ve only recently started doing some web coding for the first time in about 20 years (the bulk of my career has been working on native Windows apps). As I’m currently unemployed following a layoff, I’m in an HTML/CAS/JavaScript course as part of a larger curriculum, and the responsive design was killing me this week! As it is, I was able to get a better understanding of how all the flex options work, which allowed me to “stop fighting” the browser as you suggest, eliminating about 40 lines of CSS code in the process. My pages now behave, but your sections on grid design and the side bar might allow me to streamline my code even more. I only recently discovered your channel Kevin - thank you for the great content!
@weshen834 ай бұрын
It's really a great channel. I'm in a bit similar situation as you. I started recently with The Odin Project. For me it's the best course to learn web development. Over the last years I dabbled with other courses, but always stopped because of life stuff and not easy to grasp things if not enough time is spent. So, if you stopped because of same reasons. Search for the Odin Project and see for yourself. It's totally free and in my opinion the best way to learn
@everythingold-school.251210 ай бұрын
When he said "Don't write CSS that you do not need" my mind was like, "You're busted boy!". Thank you, Kevin. The video helped me so much.
@marcosferreira-dk6nw5 ай бұрын
I've just started your course on responsive layouts. Thanks for sharing your knowledge freely.
@victorelgersma784523 сағат бұрын
Reminds me of the difference between declarative and imperative programming. Imperative would be using media queries, whereas declarative is leaving the browser to figure out the details.
@_koh92_10 ай бұрын
Hello, Kevin! I want to thank you for all your job (videos, tutorials, newsletters etc.)! The last letter you’ve showed statictic of your KZbin channel, where mentioned Poland and his love of CSS. I’m your fan from Russia and I love CSS too! Could you tell about Russian # in your channel statistic? 🙂 Your content helps me: 1. Learn English 2. Level up my CSS skills 3. Teach my Frontend’s collegues of new CSS features! Keep up the good work! 👍
@KevinPowell10 ай бұрын
Glad that you're enjoying my content! In the last year, Russia is #13 :)
@zealest10 ай бұрын
crazy how you came in clutch with this guide
@denoww926110 ай бұрын
Great video! I'd love to see one about the differences in how you'd approach CSS for single-page webapps - for example, often they need to fill the full viewport height exactly, which is very different to how traditional websites work. Appreciate the content!
@dimkayilrit260610 ай бұрын
Miss this for so Long 😎😎, this was what made me love this channel some years back
@MyDpop10 ай бұрын
YESS! everything you do is to help us *fall in 💘 love* with CSS and be *a little bit less frustrated* by it! Thank you Kevin
@jens84-847 ай бұрын
great video! very thankful for theese tips as a newbie to css. Lol i came here cause i built my website after my dekstop screen and set al width and heights to pixels and then when i went on my phone it all became crazy, now ill rebuild and do it right!
@HBCGAMING8 ай бұрын
I am doing all wrong stuffs as mentioned in above video fixed size layouts always which carry me overflow problem of elements Now i avoid those problems. ❤
@tonybowen45510 ай бұрын
I just got done fighting a grid layout with media queries. Literally everything you talked about in this video I've been doing wrong for years.
@zh10949 ай бұрын
great video, i love this. I am not a frontend dev but seeing that some things related to responsiveness can be just done simply.
@webdevgaur10 ай бұрын
I love your content Kevin! I derive so much value from your videos. Just today I watched your video on css position property and it helped me solve a problem at work which was causing a big pain. Thank you brother man!
@apradaglez9 ай бұрын
That’s a pity that I couldn’t understand all that you explain. I follow you and always learn something. Thanks master
@shamilrasheed64278 ай бұрын
Your way of teaching is very nice. Really enjoyed and learnt something.
@icarodlima6 ай бұрын
Every time I decided to quit the video because I had “learned enough” I saw something mind-blowing and ended up watching until the end
@chaze2k39 ай бұрын
7:59 : "Now, Let's say i was doing this guy" 💀😂
@darz_k.2 ай бұрын
This is a great approach. I've watched this video a few times now, and have learned a lot about how to think about and approach a responsive layout. Towards the end, the example for the media query, and using a min width; I suppose this props up the benefits of a mobile first approach to development?
@henrythomas71129 ай бұрын
Thanks for the new video! I’m looking forward to seeing what other content you post! Always good to learn as much as you can!
@SirZyPA12 күн бұрын
Personally, i only use media queries if i need to add something, that you can't do with responsive code, this would be like swapping layouts, i.e by going from a desktop navigation, to a hamburger navigation, as mentioned in the video. As for breakpoints, I find the preset values in the device toolbar (device simulator, responsive simulator, whatever you want to call it) in the developer tools, to be quite useful for inspiration. Usually, I go with: - Tablet: 768px - Intermediate: 960px - Laptop: 1024px Using one or a mix of these values should cover most needs for media queries." if you need more than 2 media queries, i honestly believe youre doing something wrong and need to refactor your css to be more natively responsive.
@mj20682 ай бұрын
this made so so much sense. THANK YOU!
@ColinMacrae-d2o4 ай бұрын
I think technically this video is about responsive web css, not design. I was hoping to find something that would give good design tips on taking a desktop site and making it responsive, and how to do that the best, in terms of designing it. The building it part (css) is the easy part for me! Anyway, good content all-around, so thanks for that Kevin!
@umamiimamu10 ай бұрын
Thank you Kevin, I learned a lot in one video and u always have so much cool stuff to learn. Big respect for what u doing for the community now 💕💕
@nathanmiddleton147810 ай бұрын
You always have such beautiful cleanroom examples, thank you for that. There used to be a time it was easier to go open up the source of a site and maybe learn a thing or two, but anymore it seems like everything is hidden behind javscript code. Recently I visited a site and everything was generated by Javascript; the CSS, the HTML, EVERYTHING! I really feel like this is a step backwards. Like you lament in this video about keeping it simple. Whatever did happen to the KISS rule?
@Hamz-aa10 ай бұрын
A very thorough explanation of responsiveness. Really appreciate ❤
@AndyMorrisArt3 ай бұрын
I gave up! But I'll bookmark this and maybe try again. I broke down and just built a mobile version that I'll put in a sub-domain and then with a media querie do a redirect. Not Ideal I know but for my purposes it will suffice. I think if i had started with a Mobile designed website then it might've been easier to get it to expand into multiple columns but starting with a 12 column grid I just couldn't get the images to cooperate. After trying for 12 hrs. straight I gave up.
@AndreaGonzalez-sc8deАй бұрын
I’m currently in the same boat; I’m in springboards software engineering program and I’m so confused as to how to make my digital cv responsive to other devices including mobile
@TOONSSTATION8 ай бұрын
Thanks. I'm stuck with responsiveness hope this will help
@andersonlontsi2999 ай бұрын
Wow this is so well explained it's like I'm discovering the whole stuff again😅 Thank you sir 🙏
@oat100010 ай бұрын
Could you make a video about the background when playing videos on youtube? It's a super cool tri-axis blur effect (x, y, time). It not only is a gaussian blur, but also blends into the future frames of the video.
@mj20682 ай бұрын
@16:47 "the whole pixel perfect thing, first of all, please don't try and do that". this sentence, in a way, can make the world a better place.
@lenerignacio9 ай бұрын
Hi Kevin, thank you for all the knowledge you share across the videos and explanations. Recently, I've been seeing a "new type of responsive" known as fluid web design. Do you know about it? Is it different from the responsive? Or what should be some good concepts to have in mind for a fluid web?
@danielekpenyong59306 ай бұрын
Great video and awesome lesson Kevin thanks for the detail you used in the video
@ishowspeed719110 ай бұрын
Thank For this video sir i am looking this video for soo many days and this is the best video i got today
@snakehound76785 ай бұрын
Thank you very much for this video. Finally I found explanations that help me in my first project :)
@mahadevovnl10 ай бұрын
A completely separate question: In CSS, we can set: `color-scheme: light dark;` And that's fine, we can use media queries to detect a system preference: `@media (prefers-color-scheme: light) {}` But does CSS also allow the user to override the system preference? Right now I'm doing that with JavaScript and it feels so clunky. I sometimes wonder if we need a new browser API, something like `UserPreferences` to set, reset, and update certain user preferences that would override certain media queries.
@taylorenglish62372 ай бұрын
Awesome video! Thanks Kevin!
@danielhalasz-szabo514310 ай бұрын
Thx. I bookmarked this video as an everlasting reminder.
@web_alchemist_10 ай бұрын
Loving grids the more I learn about it ⚡
@MrDJsArcade6 ай бұрын
Great video! Sidenote, can you please tell me how you make your video shift to the bottom of the screen so smoothly whenever it’s in the way?
@outpost3173710 ай бұрын
Less is most certainly more and I no longer use position absolute for complex overlapping layouts, there are better alternatives out there in the CSS universe! :)
@hossamayman358710 ай бұрын
Just the right content at the right time love it
@colleenwiederАй бұрын
I needed a review, thanks!
@xreed810 ай бұрын
Could you do a vid on improving performance? I built my second personal portfolio website but it for some reason loads a little slower than your normal website, making it look a little less professional than it should be
@ArtyomStouch10 ай бұрын
Thanks mr.Kevin, need more repeat .
@huncyrus10 ай бұрын
Would be interesting to see Kevin talking about responsive design with auto-sizing font size where it scale up when u watch on 50"' and 4k (readable and ain't stuck on 14 font size) and also good on phone. If anyone know any good article or video about it, would be nice to share with me.
@borisgomiunik79607 ай бұрын
Thank you. You're explaining it better than the ones that made it :)
@yisuslalala10 ай бұрын
you're the best Kevin, thank you so much!
@TrxsTer10 ай бұрын
Damn just when I was having hard time with responsiveness, you posted a video on it, amazing 🤩 and thanks haha
@JuanCastro-C2 ай бұрын
Hey Kevin, awesome content as always, thank you. You mentioned pixel perfect designs, what do you think of that?
@dev-suresh9 ай бұрын
Thank you for making CSS easy for me :)
@PlantTechiesManage9 ай бұрын
"I Have a ugly website but it's atleast working in all screen size " -frustrated css devs
@chrisicotec765210 ай бұрын
i always recommend avoiding heights unless its essential to the element, just using padding... anyone else open codepen or their ide and follow along with these tutorials? and seeing what you can do
@TurpoChargedGaming10 ай бұрын
I agree VH/VW are iffy. But with the rise of container queries, would you use CQB/CQI or still no?
@ratstrat19848 ай бұрын
This is me in a nutshell. I start declaring and just declare myself right into a headache. Then I dump my CSS and start all over.
@vanessastefanova10 ай бұрын
The timing of this video makes me believe in simulation theory.
@arturmoreira97167 ай бұрын
Amazing video brother. Thanks!!!
@rohanphaff26402 ай бұрын
@AnhNguyễnNgọcHải-n8kАй бұрын
00:02 Sự thay đổi trong cách tiếp cận CSS giúp trang web phản hồi nhanh hơn 01:54 Sử dụng CSS reset và điều chỉnh hình ảnh cho thiết kế web responsive 05:33 Đặt chiều cao và chiều rộng tối thiểu và tối đa cho các phần tử 07:18 Đặt lề và chiều rộng cho thiết kế bố cục linh hoạt và thích ứng 10:48 Ôm lấy trình duyệt và làm việc với nó, không chống lại nó 12:39 Sử dụng các đơn vị khung nhìn một cách có trách nhiệm để kiểm soát bố cục tốt hơn 16:07 Thiết kế nội tại cho phép trình duyệt tìm ra bố cục, giúp trình duyệt dễ dàng và thích ứng hơn. 17:48 Bố cục linh hoạt sử dụng đơn vị minmax và fr 20:55 Tiếp cận các truy vấn phương tiện bằng cách thêm độ phức tạp để quản lý dễ dàng hơn 22:32 Khóa học miễn phí có tên là chinh phục bố cục đáp ứng để thay đổi tư duy Crafted by Merlin AI.
@Wadih-bc7 ай бұрын
Very much appreciated! Thanks.
@DaBigin10 ай бұрын
Ever look into Penpot? I'd love to see you do a video of your thoughts about it.
@D7460N10 ай бұрын
Thanks again for this timesheet video. Keep up the great work! What are your thoughts on leveraging custom HTML elements, vice DIVs and classes, as a way to convey intuitive syntax with (usually) less code? I have found that it enhances fellow developers' experience (DX).
@nguyenhuynh379210 ай бұрын
Hi kevin, thanks for making this amazing tutorial. However, what if I want to create a grid of cards that have same width and height, should I use fixed width and height?
@solo-yl8uc8 ай бұрын
Thank you so much, it's so helpful.
@anton941010 ай бұрын
Thank you for the video! I noticed in tailwind we need to understand where the break points are, but this css only approach makes things much easier. Kevin, do you ever use tailwind or 3rd parties for css?
@caspgin10 ай бұрын
Do you have a css and animation series that goes from scratch to smoke?
@Smile__0077 ай бұрын
Thanks for this ❤
@josephbolton80925 ай бұрын
This video was a eureka moment for me
@samit4me10 ай бұрын
This is so good, fantastic video, thank you so much for this 🙌 Sorry, I feel bad for asking, what font/theme are you using in vscode? Looks super clean ✨, especially liking the syntax highlighting colors
@hassansyed60879 ай бұрын
I'm definitely struggling with the responsive aspect of website creation. Like everything needs it's own dedicated space and then it needs to look uniform and if one div shifts over, the text is all over the place. It's a mess. Any idea on how to use Grid and Flexbox preemptively so that we don't counter such problems when we get to the media query section?
@hiddensinger263010 ай бұрын
Very helpful video Kevin
@patsymutiso28 күн бұрын
I wish I could apply this to what a page builder does.
@tetsuorulin900910 ай бұрын
beautiful video, thanks my G
@idk6633610 ай бұрын
A video on webkits would be fun cause I do not understand how to use them
@remox889410 ай бұрын
Just thank you Kevin.
@MatttKelly6 ай бұрын
Would you say it's important to create components and designs that allow themselves to be scaled better? Instead of trying to fight it to look just the way you want it, design it so that when it scales, it has "space" to do what it needs to do? I'm not sure how to ask that a better way, lol
@josegamarra35329 ай бұрын
Didn't know about the grid autofit, it feels like black magic
@titus77706 ай бұрын
Don't usually make comments like this but I feel like there is a lot of knowledge here but the video takes too long to actually start. It's over 4 minutes of just talking
@louismefor6254 ай бұрын
Check your internet connection pls
@KhoaNguyen-io1rx4 ай бұрын
Lol what he meant it took 4 mins intro before Kevin jump into the main concept
@kuwandak3 ай бұрын
Kevin yaps a lot for no reason
@flipinfin2 ай бұрын
That's he's layout of making videos bruh. If you made videos you'd understand instead of skipping the intro. You know what a intro is right?
@yamaikaguyachi4 ай бұрын
is it ookay to be using a lot of flex box when creating a navigation bar??? its kinda look dirty if i say so....