A better image reset for your CSS

Поділитися
Вставка
  • Опубліковано 4 січ 2025

КОМЕНТАРІ •

  • @WarrenGroom
    @WarrenGroom Рік тому +209

    After many years of following, watching, and taking your courses, I've just this second realised that you open your videos with "Hello my front end friends", not "Hello my friend and friends", that I thought that I'd heard dozens and dozens of times, lol. Just LOVE your videos, the most value I get from UA-cam, by a huge margin ❤️

    • @CrispyCircuits
      @CrispyCircuits Рік тому +9

      I thought the same thing! Been watching for a long time.

    • @dom8429
      @dom8429 Рік тому +7

      WHAT thats crazy I never noticed but it makes so much sense now

    • @TechnicJelle
      @TechnicJelle Рік тому +7

      Wait what!?
      I thought that too!

    • @RayAndrewsDev
      @RayAndrewsDev Рік тому +1

      Only realized that a few months ago myself :)

    • @CarlosHernandez101400
      @CarlosHernandez101400 Рік тому +3

      Well, crap 😂😂. I never understood why he says hello to just one friend first. It turns out I need my hearing checked. 😂😂

  • @JosephCodette
    @JosephCodette Рік тому +37

    Good stuff ! You can also style the alt attribute img[alt] if needed ! I used it for small thumbnails where I wanted an overflow of none when the alt is displayed 😊

    • @hobbit125
      @hobbit125 6 місяців тому +2

      That's not styling the alt attribute (you can't style attributes.) That's styling any img element that has an alt attribute.

  • @kaustavroy6542
    @kaustavroy6542 Рік тому +1

    This is what a high quality video is all about . Learning new stuff on every video. I didn't even know about the shape margins thing , checking that out next.
    Thanks Kevin ❤

  • @zarkasias
    @zarkasias Рік тому +3

    This is great!! The explanation shows how this reset can really help improve performance.

  • @hovhadovah
    @hovhadovah Рік тому +35

    I don't think vertical-align: middle is a one-to-one replacement for display: block, but correct me if I'm mistaken. Per my understanding, display: block removes the line height from the image entirely (since block-level elements can't have a line height), while vertical-align keeps the line height but moves the image down vertically so it no longer seems like it has uneven spacing. Technically the image still has extraneous spacing, but now above and below as opposed to just below.

    • @xphstos_
      @xphstos_ Рік тому +4

      You're kinda right.
      If you use imagery in your site just for decoration. Then yes.. display block seems more reasonable reset but if we're talking about a blog site were most of the images live inside article's body then it's best to add display block when needed and keep vertical align middle for the rest.
      Although vertical align does behave like display block. There is no excess space on top or bottom if you use it. So why don't we use that as a default reset!?
      As a personal rule I try to avoid turning block elements to inline and vice versa.
      It feels like I'm using div with display: inline... it doesn't affect anything perfomance wise or semantically but it feels wrong!

    • @hovhadovah
      @hovhadovah Рік тому +2

      @@xphstos_ Hmm, I just tested in a jsfiddle and vertical-align: middle does appear to work the same way. I wonder _why_ this works, though. Does line height behave differently for images?

    • @nikolaypanayotov6941
      @nikolaypanayotov6941 Рік тому +2

      Vertical align top should remove it completely. Some other elements have this as well, for example

    • @lumynou5
      @lumynou5 6 місяців тому

      @@hovhadovah AFAIK, the behavior of line height on images is the same as on other inline elements. This works because an image aligns with the baseline of text by default, as the initial value of `vertical-align` is `baseline`, and there is space under the baseline reserved for letters like "g" -- both `display: block` and `vertical-align: middle` remove that space.

  • @wardxela
    @wardxela Рік тому +3

    Dealing with high quality images is not uncommon nowadays. Low-res technique is something! I really appreciate you for sharing this kind of things with us.

    • @mrgamerzyt3945
      @mrgamerzyt3945 11 місяців тому

      Yea, this technique will really be helpful. I personally have tried to do it before but failed 😭

  • @lewisone
    @lewisone Рік тому

    The low-res image part is a very interesting concept that I am for sure going to use from now on, especially since I have experienced slow internet in public places and see how important if can be. Very cool insights.

    • @eduardoalvarez4457
      @eduardoalvarez4457 10 місяців тому +1

      maybe it can be combined with CSS filter blur to remove the ugly compression. (note that the filter needs to be done by the browser not be applied to the low res image directly because blurring the image adds more colors, meaning the low res will have a big file size, defeating its purpose)

  • @osaid56
    @osaid56 11 місяців тому

    maaaaan this is veeeeeeeeery nice video, it made me think again about my understanding of this stuff, very beneficial, thanks a lot man.

  • @d3_ek
    @d3_ek Рік тому

    Fantastic content. I love watching your videos. I learn something new pretty much everytime I watch one. You're a great teacher!

  • @mk72v2oq
    @mk72v2oq Рік тому +16

    Regarding of lowres version images: progressive jpeg exist. It loads in low quality first and gradually improves during loading.
    This is a very old feature and supported by all browsers. That's it, simply encode your jpegs as progressive and no extra html/css manipulations needed.

    • @r-i-ch
      @r-i-ch Рік тому

      How to? Do you need multiple jpgs?

    • @mk72v2oq
      @mk72v2oq Рік тому +2

      @@r-i-ch advanced image viewers/editors simply have "progressive" option when saving jpeg. That's all, the image will be encoded in progressive mode, no extra manipulations required.

    • @KevinPowell
      @KevinPowell  Рік тому

      I know, and you can even see that working here, but it still starts with the lowres one first, and then you can see the quality improving over that image as the better image loads in.

    • @mk72v2oq
      @mk72v2oq Рік тому +2

      @@KevinPowell I mean to encode original image as progressive. The image in the video loads pixels sequentially top-to-bottom. A progressive image on the other hand starts with low-res version and gradually "emerges" improving in quality.

    • @Eckster
      @Eckster Рік тому +3

      Yeah, I'm a bit confused why this is better than progressive encoded images, I suppose it gives you better control over load priority and just how low quality the original one is? Seems less efficient though and definitely more inconvenient.

  • @okelecomedyhouse6994
    @okelecomedyhouse6994 Рік тому +5

    You have been a very big influence in my life and I really appreciate you for that and I would really like to know the courses u have done so far so I can follow my mentor and his foot steps to learn the same courses as you

  • @programingwithali2461
    @programingwithali2461 Рік тому +1

    Thanks for this content

  • @WavesOfKnowledge49830
    @WavesOfKnowledge49830 5 місяців тому

    thank you bro love your work

  • @D7460N
    @D7460N Рік тому +1

    Perfect timing, sir.

  • @AndrewSmithDev
    @AndrewSmithDev Рік тому +1

    I like the background image hack!

  • @houston61452
    @houston61452 Рік тому +2

    Excellent video, as always!
    I noticed a major drawback with the low-res background image, in the case of a .png with transparency, we'll see blurred pixels from the low-res image behind the edges of the source image.

  • @xphstos_
    @xphstos_ Рік тому +1

    Thank you!! I've been screaming my lungs out every time I was seeing display block on images! Vertical align is the way to go!

  • @chainedbeauty
    @chainedbeauty Рік тому

    I saw the video and immediately implemented it in a project. Thanks for sharing as always! ❤

  • @kopilkaiser8991
    @kopilkaiser8991 5 місяців тому

    Love you man 😊

  • @RakeshSingh-vl2mz
    @RakeshSingh-vl2mz Рік тому

    So much informative
    I am hell impressed by your knowledge thank you sir❤

  • @pibbz13
    @pibbz13 Рік тому

    Thank you! This is so useful :D

  • @HuynhLuong227
    @HuynhLuong227 Рік тому

    great tricks, really thanks Kevin, love your content.

  • @Benjambles
    @Benjambles Рік тому +5

    If you have a lot of images, and a slow network, preloading low-res images may also not be great. You could also consider using blob urls which will add to the initial page weight, but should compress fairly well.

    • @clintquasar
      @clintquasar Рік тому +1

      Perhaps lazy loading then.

    • @thekwoka4707
      @thekwoka4707 Рік тому

      No, just use srcset and sizes properly.
      And lazy loading too, of course.

    • @martinklasson1981
      @martinklasson1981 Рік тому

      ​@@thekwoka4707 I just am not that fond of srcset/sizes - because they use the viewport and not the container as the "judge" of what image to load? I can not understand why there is a better native solution already for this.

  • @valmirvirtuoso3796
    @valmirvirtuoso3796 Рік тому +1

    Your channel is very good Kevin, congratulations, i'am from Brazil, and I discovered your channel a short time ago, but with UA-cam's automatic subtitles I've been getting by, good job! Can you make some content about animations? Or someone who recommends something from your channel that you've already done.

  • @Pompiduskus
    @Pompiduskus Рік тому

    this is awesome !!!

  • @tenthlegionstudios1343
    @tenthlegionstudios1343 Рік тому

    wow this was super applicable to what I am doing at work today. I want an SVG from the server to be in place of the image until it loads.So with slight modification I can serve the SVG from my server that will be loaded with the html, until my image can load in. Thanks!!

  • @enriquegrageda
    @enriquegrageda Рік тому

    I like the low resolution to high resolution effect 😃

  • @spatialoptic
    @spatialoptic Рік тому

    Using this and it is great!

  • @carebees
    @carebees Місяць тому

    Thanks for the info! As a side note: "I'll include this [or that line/piece of code], just in case" (10:45) is a bad practice. Only have code that is used.

  • @JohnBortins
    @JohnBortins Рік тому

    Added this to one project. Now I need to make some small adjustments where images lack margin.

  • @VaibhavShete
    @VaibhavShete Рік тому +2

    I remember when some websites used to feature this low-res-then-hi-res images, but when I checked it had turned out that there's a special way of encoding in jpg: Progressive JPEG! Don't think it is supported in webp so we don't see it much these days. That also maybe because overall the internet speed is better than those days.
    But it does exactly this. Shows a low res version of the image and progressively enhances it!! All in a single image file, not making you store hi-res and low-res separately.

  • @PBearne
    @PBearne Рік тому +1

    We added a background color placeholder in WP performance-lab plugin

  • @xorlop
    @xorlop Рік тому +1

    Hey yall just a heads up to get that progressive image loading scan effect, I think your image needs to be interlaced. Otherwise, it will replace original all at once.

  • @davidcooper4327
    @davidcooper4327 11 місяців тому

    My first big takeaway was that you can undock the dev tools. I've been wrestling with docking on the side vs underneath for years.

  • @MasterHobbitLoL
    @MasterHobbitLoL Рік тому

    Great video

  • @incarnateTheGreat
    @incarnateTheGreat Рік тому

    That background low-res hack reminds me of Netscape back in the day.

  • @manuelenng
    @manuelenng Рік тому

    Oh! Kevin Powell. I bless the day I followed your UA-cam channel.

  • @KlaudiusL
    @KlaudiusL Рік тому +8

    Instead of using a crappy/broken/low quality image, use a blurried version. Smooth color transition favor the jpeg algorithm.
    _comparation_
    original image: 1 Mb
    low quality image: 49 kb
    blurried image: 15 Kb

    • @xorlop
      @xorlop Рік тому +4

      I would be interesting to try and convert to svg with a couple of squares then blur the svg

    • @zzord
      @zzord Рік тому +6

      Or another option is to use blurhash. That's only a few bytes per image and looks very nice.

    • @KlaudiusL
      @KlaudiusL Рік тому +1

      @@zzord Yeah .. nice catch. Thanks

    • @dealloc
      @dealloc Рік тому +2

      @@zzordAnd also relatively cheap to decode! I love Blurhash :)

  • @henriquesalgueiro2744
    @henriquesalgueiro2744 Рік тому

    Pleease make a video of handling with browsers input autofill (how to change the way it styles) 🙏🏻

  • @bendavies925
    @bendavies925 Рік тому +4

    at 7:05, did you chuckle at what you said? hahaha

  • @serychristianrenaud
    @serychristianrenaud Рік тому

    Thankd 👍

  • @hubyxreds
    @hubyxreds Рік тому +3

    Nice video! I wonder what are the advantages of a low res placeholder vs a progresive jpg? Also in specific cases you don't want to have contents shifting may be better to use a transparent placeholder and an absolute object on top of it.

    • @tombyrer1808
      @tombyrer1808 Рік тому

      As suggested in the video, you can preload 'above the fold' placeholders. A very low resolution placeholder might be less kb than the first pass of a progressive image. Also, depending on your target browsers, might be better not to use jpegs, but only AVIF & WebP.

    • @hubyxreds
      @hubyxreds Рік тому

      @@tombyrer1808 I don't know the math behind the progressive scan but I'm certain that the first pass is smaller than a reduced image. Btw, I would stay away from the AVIF format for now until its compatibility improves.

  • @crstnio
    @crstnio Рік тому

    Built into my new project! ✅

  • @RhayvenBlood
    @RhayvenBlood Рік тому

    Wait, that shape-outside gives me an idea for a redesign that would work well with that style of positioning o:

  • @LaughingInCorner
    @LaughingInCorner Рік тому

    This is great

  • @DainSPb
    @DainSPb 8 місяців тому

    About the background-image trick: isn't it better to use progressive jpeg instead of messing with duplicated image files that may cause some SEO and maintenance issues?

  • @ruittenbogaard-digital
    @ruittenbogaard-digital Рік тому

    Awesome tips! But I was just wondering... what is the advantage of a background-image over ?

    • @KevinPowell
      @KevinPowell  Рік тому +1

      That was deprecated with the release of html5. The purpose of that was what we can do with srcset now, with several different versions. From what I understand, it's purpose wasn't to act as a placeholder, but was an alternative version that was lower res.

  • @tonimaunde
    @tonimaunde Рік тому

    8:10. What a nerd! Beautiful technique.

  • @thekwoka4707
    @thekwoka4707 Рік тому

    The low res placeholder thing is a bad bandage.
    It just increases network congestion.
    Use a proper src-set and sizes attributes so that you srent acrually loading it massively oversized images, and the browser can adapt to poor network conditions.

  • @philibertetienne1747
    @philibertetienne1747 Рік тому +1

    Hello Kevin, thanks for all the inspiration ✨️
    Lighthouse in chrome devtools gives the advice to use srcset and avif format for optimized images. Would it be something you recommend in addition to current content of your wonderful video ?

    • @thekwoka4707
      @thekwoka4707 Рік тому +1

      Srcset is better 100%.
      This lowres placeholder thing is nonsense.
      Use srcset and sizes with a. Generous helping of options in webp, and all the loading issues are solved.

  • @kosmar
    @kosmar 10 місяців тому

    watched this on the subway. ironically i saw the lowres image part in a very low res video.

  • @nathanmiddleton1478
    @nathanmiddleton1478 Рік тому +3

    Whatever happened to progressive JPEG? Doesn't that do the same thing without making two network connections?

    • @SebastianMares
      @SebastianMares Рік тому

      Just my thought

    • @HolgerNestmann
      @HolgerNestmann Рік тому +1

      nothing happened. They are still great. This is good for png, gifs or maybe user uploaded jpgs. HTTP2 helps on the connection overhead

    • @thekwoka4707
      @thekwoka4707 Рік тому

      It's also larger than a webp, so why bother?

  • @MaxWeir
    @MaxWeir Рік тому

    I love the background image idea, but how could I use this method as a carousel? And for a page that has multiple cards with carousels.

  • @fabbahiense
    @fabbahiense 11 місяців тому

    In the hero image, wouldn't it negatively affect the lighthouse, for example?

  • @ncmathsadist
    @ncmathsadist Рік тому +1

    An image, by default, is an "overgrown character."

  • @flipinfin
    @flipinfin 3 місяці тому

    This is the old style of setting backgrounds for websites. Except i never used background cover.

  • @hello_world_104
    @hello_world_104 10 місяців тому

    whats best practice as far as this vs like figure , picture, source stuff

  • @scryspc
    @scryspc Рік тому

    Instead of the low res version I get a white background while the high res image is loading over it and I'm not sure why.

  • @EugeneKoshelev
    @EugeneKoshelev Рік тому

    Cool!

  • @yoelczalas
    @yoelczalas 5 місяців тому

    How to have a static height for images when the container is responsive and flex?

  • @HolgerNestmann
    @HolgerNestmann Рік тому +1

    This is so funny. I basically built the same fake progressive image image loader this morning. What'd be really cool if we'd had a pseudo class during loading - we could blur the background image or indicate loading indicator without javascript

  • @dzigizord6567
    @dzigizord6567 10 місяців тому

    Why using the background image hack when we can use tag and have a low res image while big one is loading

  • @paradoxify_
    @paradoxify_ Рік тому

    If I have many images in my site, do I have to prefetch low-res images of them in head tag if I want to use them? Wouldn't it make a mess?

  • @jmsherry
    @jmsherry Рік тому +1

    If you leave it as display inline and you have it as an isolated element surely that loses the ability to use vertical margins, no? That could be problematic?! (Case for inline-block?)

  • @PicSta
    @PicSta Рік тому

    Wouldn't it be better to apply this to picture, svg and video tag as well?

  • @dj10schannel
    @dj10schannel 10 місяців тому

    Interesting 🤔

  • @dasten123
    @dasten123 Рік тому

    I don't get why the shape-margin should be included in the img reset. If it's just for those special cases, why not specify it along with the float and stuff?

  • @Tony.Nguyen137
    @Tony.Nguyen137 Рік тому

    Can I use width and height 100% + object-fit: cover/contain on image or it it bad practise

  • @mihao-runs
    @mihao-runs Рік тому

    height auto sometimes messes up in safari :/

  • @najmantube
    @najmantube Рік тому

    Would it be overkill (or bad SEO) to preface all alt text with 'Image:', e.g. alt="Image: range of hills"? This, along with italic text, would help to distinguish it from the surrounding text if image loading failed.

    • @thekwoka4707
      @thekwoka4707 Рік тому

      It's more just not appropriate.
      Alt text is not a description of the image (description is a separate atteibute).
      Alt text is supposed to communicate whatever the point of the image is, not describe what the image is.
      In this case, the hills has no point. So it is decorative and wouldn't have an alt, to be each compliment.

    • @najmantube
      @najmantube Рік тому

      @@thekwoka4707 That's a critique of the use of alt text in the video. My point was that, given the alt text did have some use and was correctly written, wouldn't prefixing the alt text with 'Image:' help people who had to read it on the screen (because image loading failed)?

    • @trevoreyre
      @trevoreyre Рік тому

      @@najmantube You usually don’t want to say it’s an image in your alt text. A screen reader will announce that the element is an image before reading the alt text, and a broken image will have the little broken image icon next to the alt text for sighted users. So in both cases, it’s already clear that it’s an image and including that in your alt text is redundant.

    • @najmantube
      @najmantube Рік тому

      @@trevoreyre You're right!

  • @MonsterSmart
    @MonsterSmart Рік тому

    shape-margin... Yea I already see developer in the corpo having PR blocked with the PR changes requests like "why is this shape-margin is for? When we are not using it then it shouldn't be here"

  • @cadonaumarco3540
    @cadonaumarco3540 2 місяці тому

    Cool - but i set insteat of vertical-align: middle; on display: grid:: - but vertical-align: middle is cool because i have to set width: 100%; instead of max-width because I have automated img resize with media querres. but with max-width and vertical-align: middle; ist cool because the img remain center not left. - Thank you

  • @adam4813
    @adam4813 Рік тому

    Just a shout-out to adam-7 pngs that have this progressive loading of a lowres version for an image, while loading the higher res, out of the box.

  • @Stoney_Eagle
    @Stoney_Eagle Рік тому

    Is there a way to get rid of that broken image thingy and the border for missing images? (Specific use case only) I can use Javascript but a plain css/html option would be nice.

    • @KevinPowell
      @KevinPowell  Рік тому +2

      You can use a psuedo element (::before and ::after) on images, which only shows up when an image is broken, otherwise it doesn't do anything. I haven't played around with that much though, so I'm not sure how support is across browsers

  • @cakeCrumbzz
    @cakeCrumbzz Рік тому +24

    Thank you for the video, also 🇵🇸

  • @letshev
    @letshev Рік тому

    Is this applicable to SVG images inside the img tag?

  • @outpost31737
    @outpost31737 Рік тому

    Most hosting providers already include a built-in lazy load option. Great idea but more code and unnecessary in most cases.

  • @QwDragon
    @QwDragon Рік тому

    Why eberybody makes low resolution images instead of using progressive jpeg?

    • @thekwoka4707
      @thekwoka4707 Рік тому

      Progressive jpg load slower, since they are larger, by a LOT, than webp

  • @StupidusMaximusTheFirst
    @StupidusMaximusTheFirst Рік тому

    Isn't this extra loading of a low-res img redundant, since jpg already has this built-in, in its "progressive" property?

  • @ioiiooio4080
    @ioiiooio4080 3 місяці тому

    What ever happened to using progressive JPEGs or PNGs? I remember that being a standard years ago

  • @Antimated
    @Antimated Рік тому

    Would all of this work with a figure tag and multiple source-sets?

    • @KevinPowell
      @KevinPowell  Рік тому

      For an image inside a figure, I don't see why it wouldn't work :)

  • @NebihTV
    @NebihTV 9 місяців тому +2

    I did the low res solution already in 2015.. unbelievable that people just came up now with this. 😂

  • @pinnaclewd
    @pinnaclewd Рік тому

    Hmmm is this really any better than a webp compressed with lazy load?

    • @HolgerNestmann
      @HolgerNestmann Рік тому +1

      yes. WebP doesnt offer progressive or deinterlaced loading. So having a couple of pixel large placeholder is still helping while the (albeit faster) loading webp arrives

    • @thekwoka4707
      @thekwoka4707 Рік тому

      No it's not.
      It's just worse.
      If you have proper srcsets sizes and loading attributes, then the image loading thing isn't an issue.

  • @lumynou5
    @lumynou5 6 місяців тому

    I wonder why this is called "optimization", does `display: block` have a worse performance? Since both can solve the problem, it seems no reason to use `vertical-align` because inline elements cannot have things like `margin: auto`.

  • @nomadshiba
    @nomadshiba Рік тому

    great

  • @junsu-ho
    @junsu-ho Рік тому +2

    classic overcomplicating things from Kevin xD 😅

  • @codeguy11
    @codeguy11 Рік тому +1

    Instructions unclear. My images didn't load

  • @NovaKirsch
    @NovaKirsch Рік тому

    Harry??? Harry???

  • @linak1909
    @linak1909 2 місяці тому

    If CSS was a country, you'd be an Honorable Citizen or National Hero or something like that. Thank you!!

  • @dienvidbriedis1184
    @dienvidbriedis1184 Рік тому

    if i'm on slow 3g network, last thing i need is to load extra low res images just because designer wanted to flex his css skills. fail!

  • @danish_ayoub
    @danish_ayoub Рік тому

    interesting

  • @brad1785
    @brad1785 Рік тому

    The real ultimate low-quality image placeholder technique is a progressive JPEG/JPEG-XL.

  • @lucienchu9649
    @lucienchu9649 Рік тому

    image always drive me crazy, even the most basic styling.

  • @hunin27
    @hunin27 Рік тому

    wassup guys

  • @kliMaLd
    @kliMaLd Рік тому

    2023 - slow 3G?

  • @badcatdesign
    @badcatdesign Рік тому +1

    Sometimes we just miss "lowsrc" 🤣

  • @MohammadAk-rx6kl
    @MohammadAk-rx6kl Рік тому

    Third

  • @sito8943
    @sito8943 Рік тому

    That was amazing Kevin, thanks face-blue-smilingface-blue-smiling

  • @rumisbadforyou9670
    @rumisbadforyou9670 Рік тому

    why purposefully add bloat?
    buy your customers an i9, then add all the bloat you want
    till then, keep your hands away from my cpu

  • @Manic_Drone_Idiom
    @Manic_Drone_Idiom Рік тому

    This video needs no padding