My top 5 most popular front-end tips

Поделиться
HTML-код
  • Опубликовано: 21 ноя 2024

Комментарии • 116

  • @tommywheel
    @tommywheel 29 дней назад +8

    Your last piece of feedback is absolutely the best tip out of all and it’s your sixth! In particular how you mention developers should approach reading and watching tutorials. I do often, on top of an actual full project, pick up a couple of new POCs I should try and I experiment at least with a couple everyday in an isolated project or env. Whether it’s a different language, a CSS trick, a JS trick… I’ll do it once, maybe twice, keep repeating if I liked it and then make it a library. I generally never use a library until I’ve made a small POC of it so I can understand what happens under the hood. Amazing video

  • @Plaha-l5z
    @Plaha-l5z 7 дней назад

    Thanks for your good videos.
    I am learning web dev in germany and after 3 month of getting help from your videos for my work projects i feel really confident about css and yesterday i could help a much more experienced colleague with a css problem and could quickly find the issues and made the site not only look better but also responsive.
    Thanks a lot for your tutorials and sharing your love for css!

  • @kerrykreiter445
    @kerrykreiter445 22 дня назад +4

    Incredibly helpful!!! Thank you for what you are doing for the dev community and for how much you’ve helped me on my journey!!!

  • @clevermissfox
    @clevermissfox Месяц назад +6

    I adore the min function and the pattern you described was divisive. I see no downside.
    Logical property margin and min function cuts down from two declarations (max-width and width) to one.
    I also hadn't seen the 100% - padding before but I've been thinking about this issue when building with Bricks because I have the full width section and then a wrapper w max width but if I put padding on wrapper then ny content is not taking up all the available space , it's max-width minus padding.
    Bricks builder forum suggested putting padding on full width section but unless I need bg colour, all thst section is doing is providing padding.
    I love the pattern of 100% - padding *2!!

  • @RickBeacham
    @RickBeacham 29 дней назад +3

    I've learned what is possible from these small tips you do. I typically never actually copy the code. However I need to rebuild what the tutorial is teaching and fail. Failure is golden. If only we learned this when we are young!

  • @dylanzalman8452
    @dylanzalman8452 29 дней назад +128

    All this time i thought you're opening was "hello my friend and friends". Which sounded odd but i assumed it was an Canadian jargon thing. First time i am realising it's "front-end friends". Hah!

    • @joonotfins
      @joonotfins 29 дней назад +2

      Same!

    • @nikmat
      @nikmat 29 дней назад +1

      Noobs

    • @itsPenguinBoy
      @itsPenguinBoy 29 дней назад +7

      The *actual* most frequent comment!

    • @RickBeacham
      @RickBeacham 29 дней назад

      That sounds like a mental thing. Which I do all the time.

    •  29 дней назад

      I used to think it was "hello my frent and friends" and that makes zero sense.

  • @LePhenixGD
    @LePhenixGD 29 дней назад +25

    Minor tip:
    Prefix local CSS variables with an underscore (--_local-var) to distinguish them from global CSS variables (--global-var)
    This helps maintain organization and clarity in your code

  • @PioneerWhoDreams
    @PioneerWhoDreams 29 дней назад +2

    I love this little layers visualization trick. Very useful !

  • @itsPenguinBoy
    @itsPenguinBoy 29 дней назад +5

    I like toggling `::before{content: attr(class);}` to expose the class of all objects on a page in a pseudo element which can be a helpful way to track down problematic elements in your design

    • @markuskopter
      @markuskopter 29 дней назад

      Haha, I just tried that here on the RUclips site on a * selector. What a mess! 😂

    • @itsPenguinBoy
      @itsPenguinBoy 28 дней назад

      @@markuskopter what a riot! Maybe 'id' is a better choice

  • @svivian
    @svivian 10 дней назад

    I've watched a few shorts, but honestly RUclips shorts has one of the worst UIs I've ever seen so I avoid them where possible. Thanks for putting this video together!

  •  29 дней назад

    Thank you for the tips, I found the section about the wrapper width very useful

  • @ashokreddy2982
    @ashokreddy2982 17 дней назад

    Just now before watching this video I was checking your shorts 😂 and they are really best and some of them are mind blowing as a new learner of deep CSS..it's a great thing that you make this video so that they will aware about your shorts...

  • @mattott
    @mattott 28 дней назад +1

    This guy really knows what he’s doing! TIL 😁🎉 Also: go watch his CSS Day talk, everyone! It was so good.

  • @OQBA-ABQO
    @OQBA-ABQO 29 дней назад +2

    No no no! The wrapper-xl is actually what needs to become the standard... makes this well organized and easy to read 😉 keep on going sir! 😉

  • @Hapkumdo
    @Hapkumdo 25 дней назад

    Thank you so much! Incredible video, not just the technical part, but also the mentality - way to go! :D

  • @omhmpp
    @omhmpp 29 дней назад +2

    this man is a Legend in the making PEOPLE

  • @kobi-kobsen
    @kobi-kobsen 29 дней назад +1

    Pesticide for outlining elements is so handy as browser extension - i can click a button on every website - not only my own.

  • @JanPavlikdr
    @JanPavlikdr 25 дней назад

    Different pattern doesn’t mean it’s wrong - to me is the prove that the programmer is actually thinking out of the box to solve issues in clever new ways. Love this logic actually!

  • @dave6012
    @dave6012 23 дня назад

    I love this format, thanks Kevin.
    Side note, I actually learned how to ollie in a dream 😄 that was after weeks of being unable to get it, though

  • @AmyPowell-m7n
    @AmyPowell-m7n 27 дней назад

    You make learning so straightforward!

  • @mrrolandlawrence
    @mrrolandlawrence 27 дней назад +1

    2:00 on the css, if you are using vite, you can create an extra dev mode with css injection. "vite --css-inject ". then you dont have to re-edit your css every time.

  • @patrickjohnson3143
    @patrickjohnson3143 29 дней назад

    I like the analogy of following a tutorial vs applying a tutorial to your own project is the same as following a GPS vs using road signs and reviewing a map.
    Following a GPS takes little attention. But following road signs and looking at a map requires strong attention and for you to transform information into action.
    When you're moving to a new location, you'll learn your way around a lot quicker if you use a GPS once or twice, then try to work it out.
    Same is true for tutorials. Watch a long one, understand the concepts. Then just start building.

  • @adkocol
    @adkocol 29 дней назад +1

    I like a lot 2nd tip. To me, it is very clear when you use it with - -var .

  • @RAYMONDJOSEPH-h4g
    @RAYMONDJOSEPH-h4g 27 дней назад

    Kevin i am a big fan of your work . God bless you
    your number one tip is your just for me thanks
    Always looking up to you thanks man

  • @MadsterV
    @MadsterV 27 дней назад

    Tip #1 is neat, but I went further and made a browser extension for Chrome (I should really bring it to Firefox though).
    Stacker - Visualize markup structure quickly
    It does an inner shade, then 3d transforms with an animation so you can see nesting. You can toggle it on and off.
    Of course, if your own CSS involves 3d transforms, it's not gonna work properly.
    Once it was done, someone pointed out that Firefox used to have that feature and then I remembered I used it a ton so.... I guess I really missed it!
    And now you can use it too!
    On #4 I'm not even sure what the objective was, I think there's simpler ways to do what I think he wanted. Except for this one, the tips are great!

  • @BigBaddaBoom
    @BigBaddaBoom 28 дней назад +1

    You are getting close to a million subs!!! Exciting times. How are we going to celebrate?

  • @dexteritymaster
    @dexteritymaster 29 дней назад +1

    Also input listener prevents paste if it has any non-number and not cleans it up (3rd tip)

  • @ElCaSseGraiN
    @ElCaSseGraiN 29 дней назад +1

    Awesome Kevin, like always

  • @rsdotscot
    @rsdotscot 29 дней назад

    For phone number submissions you can use the input type 'tel'. I'm not sure how well this validates as I tend to go a bit overkill with JS and server side validation, but it achieves the same look that you have with type 'text' and inputmode 'numeric'.

  • @antkodziej7318
    @antkodziej7318 26 дней назад

    hello kevin! Have you ever thought about making 'i rate your designs / projects' series ? I think it would really intresting and fun to watch

  • @namboozleUK
    @namboozleUK 29 дней назад +6

    I beleive there's a new feature in Chrome 130 Dev tools which will highlight an element in the DOM tree if it's scroll overflowing.

  • @ryanquinn1257
    @ryanquinn1257 29 дней назад +1

    I do realize I don’t get you often in shorts so appreciate this reminder to subscribe!

  • @brendanleighton
    @brendanleighton 28 дней назад

    Good tips and learning suggestions!

  • @redredkrovy
    @redredkrovy 27 дней назад

    I think the phrase you are looking for on that last point is “Understanding is not the same as doing.” I understand how to skateboard or play basketball but I suck at doing those things.

  • @oliver139
    @oliver139 27 дней назад

    the favicon tip got me!

  • @thematrix29
    @thematrix29 29 дней назад

    This is a good one, Kev! 😮

  • @sem-nome-west
    @sem-nome-west 29 дней назад +1

    I am a backend developer, sometimes I like to venture into the frontend by creating screens, but I have some difficulty with responsive layout, I know techniques like media query and others, however my biggest challenge is adapting layouts for smaller screens more precisely in height, there are many old devices that have very low screens and sometimes we want to display the content completely in 100vh, if anyone knows of a technique or something like that to help me with this issue. Although it is rare today to find devices in use like iPhone SE, 6, 7, 8 and it is always good to think about the design as a whole, it is very difficult to adapt these layouts to multiple devices in a harmonious way.

    • @KB04
      @KB04 29 дней назад +3

      I much prefer just using media queries instead of trying to find some advanced solution to changing to phone screens.
      -> I know this gets repeated a lot but usually the simple solution is the best.

    • @sem-nome-west
      @sem-nome-west 29 дней назад

      I wanted to know what happens with React Native that it can adapt the screen according to the size of the device, The CSS could look something like this, I'm using Bootstrap, and its grid system

  • @carlosrangel4500
    @carlosrangel4500 29 дней назад

    Awesome insights Kevin :)

  • @daveturnbull7221
    @daveturnbull7221 28 дней назад

    I don't watch all your shorts for the same reason I don't watch all your long-form videos - time. Unfortunately my Tardis is currently broken (which means I'm limited to the same 24hrs in a day as everyone else) and given the massive number of different subjects I like to dabble in I have to pick and choose which to watch. I do really enjoy your videos though and find your enthusiasm rather invigorating.

  • @aCitizenJOSerased
    @aCitizenJOSerased 18 дней назад

    LOVED it!

  • @ben53933
    @ben53933 26 дней назад

    Great tips! Thanks

  • @zakir.nuriiev
    @zakir.nuriiev 28 дней назад

    Thanks! I like your tip number 5 :)

  • @Pluvo2for1
    @Pluvo2for1 29 дней назад +1

    Hmm, what a fantastic front end tip you have.

  • @josef5600
    @josef5600 29 дней назад

    Absolutely awesome thank you!!!

  • @JohanBouveng
    @JohanBouveng 10 дней назад

    Responsive favicons: Cleaner and smaller to keep the css inside the svg.

    • @KevinPowell
      @KevinPowell  10 дней назад

      But Sandy SVG favicons aren't supported by Safari 😭

  • @Jumanji_Dev
    @Jumanji_Dev 27 дней назад

    Always Loving your Tips 👌 my Online Mentor Ya'll ❤

  • @przemek896
    @przemek896 29 дней назад

    6:18 Always validate input on the backend. Someone can just edit the HTML in their own browser and send, for example, letters instead of numbers.

  • @shaunpatrick8345
    @shaunpatrick8345 29 дней назад

    The favicon tip responds only to the OS-level dark mode, not to the browser-level setting or to themes. Any site using a flat icon ought to provide a background for it.

  • @omniadarweesh2013
    @omniadarweesh2013 16 дней назад

    Thank you

  • @shanedonlon
    @shanedonlon 29 дней назад

    Just a comment on the comments you got for the container / wrapper CSS, and how it wouldn't pass a Code Review.
    The point of the channel is to teach people CSS, how individual companies choose to implement that is up to them. But if it's valid CSS, you should absolutely be talking about it. ❤

  • @ClausRybergWiingreen
    @ClausRybergWiingreen 27 дней назад

    For the wrapper padding trick. Wouldn't it work as well with this?
    .wrapper {
    --wrapper-max-width: 926px;
    --wrapper-padding: 2rem;
    max-width: calc(var(--wrapper-max-width) + (2 * var(--wrapper-padding));
    padding-inline: var(--wrapper-padding);
    margin-inline: auto;
    }
    This way you get the same result, but padding is actually expressed padding and not implicit padding

  • @Gary_UK
    @Gary_UK 28 дней назад

    Thanks. FYI I rarely watch 'shorts' as I watch most YT on a TV with Chromecast and they don't let shorts play.

  • @KB04
    @KB04 29 дней назад +2

    Tbh im at a weird place where idk if im a junior developer or not, but currently i dont feel limited by css or javascript anymore, but there is one question that i have, when should one really use width? (specifically on content containers) do you perhaps have a video on it or something already?

    • @KB04
      @KB04 29 дней назад +1

      I mean i do usually figure it out, but it’s not something that is intuitive to me yet.

  • @dexteritymaster
    @dexteritymaster 29 дней назад

    Background trick 1:45 reminds me of 3d view in firefox.

    • @markuskopter
      @markuskopter 29 дней назад

      That has been such a cool feature! Too bad it's gone.

  • @Nightrapture
    @Nightrapture 29 дней назад +5

    Hi man, very nice video as always. I'm a senior full stack developer and I would point a thing I didn't understand of your tips. It's about number inputs. Why on earth I should prefer to make a text input with pattern and with a dozen of javascript lines of code... instead of writing 2 lines of css, yes really 2 lines ("...a lot of CSS?") to disable the arrows. Consider that javascript is (almost) always heavier to process, instead of CSS, except for some types of animations.

    • @denoww9261
      @denoww9261 29 дней назад +5

      I think the point was that on Firefox you would need that same javascript even with type="number".

    • @robkom
      @robkom 29 дней назад

      It's not just about the scroll-wheels being potentially annoying, it's about intent, UX and accessibility. Most people will use `type="number"` even when the input it not strictly an incrementable number. A great, short article on this is technology.blog.gov.uk/2020/02/24/why-the-gov-uk-design-system-team-changed-the-input-type-for-numbers/.

    • @Nightrapture
      @Nightrapture 29 дней назад +1

      @@denoww9261 ...or you just let the validation do his job. 😅 Actually to me, the worst user experience I noticed is when users do something and they do not notice any sort of interaction in the site, like when is broken or frozen. That's where they spam buttons randomly because they expect something to happen. Try with your mom! 😅 This to say that if happens to write letters and the input returns the error that must be numbers, to me is not a big deal to be honest, instead of seeing nothing happening at all. Consider that firefox is like the 5% of user case anyway.
      Or maybe just use the input type "tel" with a pattern.

    • @denoww9261
      @denoww9261 29 дней назад +1

      @@Nightrapture You have it backwards. If having zero feedback is bad, you definitely don't want to use type="number", since on Chrome/Chromium-based browsers it will silently drop the input if you type non-numbers.

  • @DevelTime
    @DevelTime 26 дней назад

    Many thanks for this video and all others! As for min, of course thank you for all the information, like ability to drop "callc" inside, but in general here I don't agree with you. And it has nothing to do with CSS -- choosing between super-"smart", sophisticated one-liner and multiple lines code, boring one could say, I blindly choose the latter one. The principle here is you should always choose solution that is below you current writing skills. It is because right now you are focused on this particular problem, all warmed-up. When you get back to it, in 5 years, when you just switched from completely other topic (say uniqueness of NULL in given database) you will be in read mode (not write) and you will look at it like at Rosetta stone. What worse, when you finally decipher the meaning of your old code, you start wondering -- does it have only one meaning, or there is some tricky side effects you don't see it. Gosh, so long comment, so in short, do not plant tricks in your code 🙂 Trick should be the effect, not the cause.

  • @Tzitzemine
    @Tzitzemine 23 дня назад +1

    Whenever you're making code examples in your videos, is there a way to see the code somewhere, without needing to reverse engineer as much as one can gleen from your videos? Often i want to play around with what you're presenting and trying out other things. I know about your codepen (which isn't really searchable or sortable in correspondance to your videos) and github. If currently not, could you maybe provide something like that? Thank you.

  • @programmersohel
    @programmersohel 29 дней назад

    Thanks.

  • @momosatnam
    @momosatnam 14 дней назад

    Thanks for the great tips!
    Is anything speaking against using 100vw instead of 100% in the wrapper example? I am asking because I might want to use the same class for absolute or fixed elements that otherwise use its parent width.

  • @Dorgrident
    @Dorgrident 28 дней назад

    From tutorials you learn the result, not they journey and problems the tutorial creator encountered to make that tutorial

  • @jesmarina
    @jesmarina 29 дней назад

    I second that: Inputs ARE annoying!

  • @JeanDidier
    @JeanDidier 27 дней назад +2

    My dear front end friends : if you have a 10 minutes per day to spend on mdn, you'll be surprised

  • @3dxspx703
    @3dxspx703 26 дней назад +3

    My top 5 is to use AI tools.

  • @AlThePal78
    @AlThePal78 29 дней назад

    they literally just need you to add a comment. This is when you should be using more comments on your code. So senior and junior developers know exactly what is going on. like /* this makes the width either 926px wide or gives the width 100% minus 2rem on each side so content fits properly */

  • @skillzorskillsson8228
    @skillzorskillsson8228 29 дней назад

    When i ride skateboard and try to do a kickflip, i am the only one jumping up in the air. The skateboard remains on the ground and then i land on the skateboard again and then it's back to hospital again. I will never even try to ride skateboard again hahaha, i am terrible at this. But yeah, i agree with you to 100%. No matter how many tutorials you watch, you wont learn to do a kickflip just by watching a bunch of tutorials. Same goes for CSS

  • @kasir-barati
    @kasir-barati 17 дней назад

    for your second most popular short: why not just box-sizing: border-box?

  • @xentric313
    @xentric313 27 дней назад

    I just wish there was a Figma like dev mode inspect feature built in Chrome and Firefox.

  • @SebastianZartner
    @SebastianZartner 28 дней назад

    Maybe you should link to your Shorts within the video and/or the description, so people may watch them, too.

  • @MishaWS
    @MishaWS 25 дней назад

    Hello Kevin, how to add support for decimal point in numeric hack you showed?

  • @AndrewJohnson-ur3lw
    @AndrewJohnson-ur3lw 29 дней назад

    I saw a comment about a single line of css to stop users downloading images. Tried it on dev site and realised that it broke the onclick actions for icons.
    As ever its better to try something and know what you have done so that you can take a step backwards.

  • @saradhchandra6671
    @saradhchandra6671 29 дней назад

    What if we can make an invisible line/box in the centre of the mobile screen that activates all the hover functions related to the specific element? Can we actually achieve that or is it tooo complex to achieve that..? I wanted to know your thoughts on this. (To deal with hover on mobile devices. Even for the ones that don't have cursor access)

  • @erickdavid4257
    @erickdavid4257 28 дней назад

    light mode developers rise up

  • @dying.burito
    @dying.burito 24 дня назад

    I'll remove all the elements, put it in another file, insert in back one by one until the issue appear again.
    I'm a BE dev.

  • @zenitsu_rk
    @zenitsu_rk 29 дней назад

    Css vs scss which one is best to build a website?

  • @cwirus99
    @cwirus99 28 дней назад

    The fact that chrome still to this day did not implement an overflow checker is kind of a joke.

    • @khodok9636
      @khodok9636 23 дня назад

      Does Firefox have one?
      I'd have to check it out if yes

  • @QwDragon
    @QwDragon 29 дней назад +1

    09:00 This js code is bad because it resets cursor position if user accidentally presses some wrong key.

    •  28 дней назад

      In Chrome is fine, but for some reason is not working properly in Safari 🤔 Any idea?

  • @arpd16
    @arpd16 15 дней назад

    11:50 😂

  • @jabeztadesse
    @jabeztadesse 23 дня назад

    Is masonry out?

  • @AirmanCS
    @AirmanCS 29 дней назад

    At 3:51 it says DANK logo, just saying, btw you saved me with your grid expanding video, the one with breakout, fullwidth etc. My webpage is made based on that now, awesome content

  • @1994SG
    @1994SG 15 дней назад

    Гарна порада про навчаня!

  • @mianala
    @mianala 14 дней назад

    Hello my friend and friend

  • @scottklink2047
    @scottklink2047 29 дней назад

    Is that bed for a cat or a dog?

  • @shubhamnagota
    @shubhamnagota 27 дней назад

    how can i like 5 times

  • @DanteMishima
    @DanteMishima 28 дней назад

    Yeah... I don't and will never watch shorts. Actually have them disabled

  • @opalizaGamer
    @opalizaGamer 29 дней назад

    please help
    macbook late 2013 use for coding this time
    16gb i7

  • @matchoo812
    @matchoo812 27 дней назад

    Ha, "marginal improvement". I see what you did there... 🤓