A better image reset for your CSS

  Рет қаралды 114,313

Kevin Powell

Kevin Powell

Күн бұрын

Пікірлер: 175
@WarrenGroom
@WarrenGroom Жыл бұрын
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 KZbin, by a huge margin ❤️
@CrispyCircuits
@CrispyCircuits Жыл бұрын
I thought the same thing! Been watching for a long time.
@dom8429
@dom8429 Жыл бұрын
WHAT thats crazy I never noticed but it makes so much sense now
@TechnicJelle
@TechnicJelle Жыл бұрын
Wait what!? I thought that too!
@RayAndrewsDev
@RayAndrewsDev Жыл бұрын
Only realized that a few months ago myself :)
@CarlosHernandez101400
@CarlosHernandez101400 Жыл бұрын
Well, crap 😂😂. I never understood why he says hello to just one friend first. It turns out I need my hearing checked. 😂😂
@JosephCodette
@JosephCodette Жыл бұрын
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 5 ай бұрын
That's not styling the alt attribute (you can't style attributes.) That's styling any img element that has an alt attribute.
@NebihTV
@NebihTV 8 ай бұрын
I did the low res solution already in 2015.. unbelievable that people just came up now with this. 😂
@wardxela
@wardxela Жыл бұрын
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 10 ай бұрын
Yea, this technique will really be helpful. I personally have tried to do it before but failed 😭
@kaustavroy6542
@kaustavroy6542 Жыл бұрын
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 Жыл бұрын
This is great!! The explanation shows how this reset can really help improve performance.
@hovhadovah
@hovhadovah Жыл бұрын
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_ Жыл бұрын
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 Жыл бұрын
@@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 Жыл бұрын
Vertical align top should remove it completely. Some other elements have this as well, for example
@lumynou5
@lumynou5 5 ай бұрын
@@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.
@mk72v2oq
@mk72v2oq Жыл бұрын
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 Жыл бұрын
@@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 Жыл бұрын
@@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 Жыл бұрын
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.
@ncmathsadist
@ncmathsadist Жыл бұрын
An image, by default, is an "overgrown character."
@xphstos_
@xphstos_ Жыл бұрын
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!
@KlaudiusL
@KlaudiusL Жыл бұрын
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 Жыл бұрын
I would be interesting to try and convert to svg with a couple of squares then blur the svg
@zzord
@zzord Жыл бұрын
Or another option is to use blurhash. That's only a few bytes per image and looks very nice.
@KlaudiusL
@KlaudiusL Жыл бұрын
@@zzord Yeah .. nice catch. Thanks
@dealloc
@dealloc Жыл бұрын
@@zzordAnd also relatively cheap to decode! I love Blurhash :)
@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!
@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 8 ай бұрын
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)
@okelecomedyhouse6994
@okelecomedyhouse6994 Жыл бұрын
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
@osaid56
@osaid56 10 ай бұрын
maaaaan this is veeeeeeeeery nice video, it made me think again about my understanding of this stuff, very beneficial, thanks a lot man.
@ManFromMars-u3u
@ManFromMars-u3u 4 ай бұрын
thank you bro love your work
@houston61452
@houston61452 Жыл бұрын
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.
@PBearne
@PBearne Жыл бұрын
We added a background color placeholder in WP performance-lab plugin
@Benjambles
@Benjambles Жыл бұрын
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 Жыл бұрын
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.
@RakeshSingh-vl2mz
@RakeshSingh-vl2mz Жыл бұрын
So much informative I am hell impressed by your knowledge thank you sir❤
@AndrewSmithDev
@AndrewSmithDev Жыл бұрын
I like the background image hack!
@programingwithali2461
@programingwithali2461 Жыл бұрын
Thanks for this content
@enriquegrageda
@enriquegrageda Жыл бұрын
I like the low resolution to high resolution effect 😃
@chainedbeauty
@chainedbeauty Жыл бұрын
I saw the video and immediately implemented it in a project. Thanks for sharing as always! ❤
@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!!
@manuelenng
@manuelenng Жыл бұрын
Oh! Kevin Powell. I bless the day I followed your KZbin channel.
@D7460N
@D7460N Жыл бұрын
Perfect timing, sir.
@HuynhLuong227
@HuynhLuong227 Жыл бұрын
great tricks, really thanks Kevin, love your content.
@VaibhavShete
@VaibhavShete Жыл бұрын
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.
@incarnateTheGreat
@incarnateTheGreat Жыл бұрын
That background low-res hack reminds me of Netscape back in the day.
@pibbz13
@pibbz13 Жыл бұрын
Thank you! This is so useful :D
@crstnio
@crstnio Жыл бұрын
Built into my new project! ✅
@davidcooper4327
@davidcooper4327 10 ай бұрын
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.
@JohnBortins
@JohnBortins Жыл бұрын
Added this to one project. Now I need to make some small adjustments where images lack margin.
@valmirvirtuoso3796
@valmirvirtuoso3796 Жыл бұрын
Your channel is very good Kevin, congratulations, i'am from Brazil, and I discovered your channel a short time ago, but with KZbin'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.
@xorlop
@xorlop Жыл бұрын
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.
@spatialoptic
@spatialoptic 11 ай бұрын
Using this and it is great!
@henriquesalgueiro2744
@henriquesalgueiro2744 Жыл бұрын
Pleease make a video of handling with browsers input autofill (how to change the way it styles) 🙏🏻
@bendavies925
@bendavies925 Жыл бұрын
at 7:05, did you chuckle at what you said? hahaha
@serychristianrenaud
@serychristianrenaud Жыл бұрын
Thankd 👍
@kopilkaiser8991
@kopilkaiser8991 3 ай бұрын
Love you man 😊
@Pompiduskus
@Pompiduskus Жыл бұрын
this is awesome !!!
@hubyxreds
@hubyxreds Жыл бұрын
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.
@ruittenbogaard-digital
@ruittenbogaard-digital Жыл бұрын
Awesome tips! But I was just wondering... what is the advantage of a background-image over ?
@KevinPowell
@KevinPowell Жыл бұрын
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.
@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.
@tonimaunde
@tonimaunde Жыл бұрын
8:10. What a nerd! Beautiful technique.
@RhayvenBlood
@RhayvenBlood Жыл бұрын
Wait, that shape-outside gives me an idea for a redesign that would work well with that style of positioning o:
@MasterHobbitLoL
@MasterHobbitLoL Жыл бұрын
Great video
@kosmar
@kosmar 9 ай бұрын
watched this on the subway. ironically i saw the lowres image part in a very low res video.
@fabbahiense
@fabbahiense 10 ай бұрын
In the hero image, wouldn't it negatively affect the lighthouse, for example?
@DainSPb
@DainSPb 7 ай бұрын
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?
@HolgerNestmann
@HolgerNestmann Жыл бұрын
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
@philibertetienne1747
@philibertetienne1747 Жыл бұрын
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 Жыл бұрын
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.
@cakeCrumbzz
@cakeCrumbzz Жыл бұрын
Thank you for the video, also 🇵🇸
@MatthewMichalsky
@MatthewMichalsky Жыл бұрын
🇮🇱❤
@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.
@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.
@LaughingInCorner
@LaughingInCorner Жыл бұрын
This is great
@flipinfin
@flipinfin 2 ай бұрын
This is the old style of setting backgrounds for websites. Except i never used background cover.
@nathanmiddleton1478
@nathanmiddleton1478 Жыл бұрын
Whatever happened to progressive JPEG? Doesn't that do the same thing without making two network connections?
@SebastianMares
@SebastianMares Жыл бұрын
Just my thought
@HolgerNestmann
@HolgerNestmann Жыл бұрын
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?
@EugeneKoshelev
@EugeneKoshelev 11 ай бұрын
Cool!
@alwayzsmarter
@alwayzsmarter 9 ай бұрын
whats best practice as far as this vs like figure , picture, source stuff
@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?
@scryspc
@scryspc 10 ай бұрын
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.
@dzigizord6567
@dzigizord6567 9 ай бұрын
Why using the background image hack when we can use tag and have a low res image while big one is loading
@yoelczalas
@yoelczalas 4 ай бұрын
How to have a static height for images when the container is responsive and flex?
@linak1909
@linak1909 Ай бұрын
If CSS was a country, you'd be an Honorable Citizen or National Hero or something like that. Thank you!!
@Tony.Nguyen137
@Tony.Nguyen137 Жыл бұрын
Can I use width and height 100% + object-fit: cover/contain on image or it it bad practise
@PicSta
@PicSta Жыл бұрын
Wouldn't it be better to apply this to picture, svg and video tag as well?
@jmsherry
@jmsherry Жыл бұрын
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?)
@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"
@dj10schannel
@dj10schannel 9 ай бұрын
Interesting 🤔
@outpost31737
@outpost31737 Жыл бұрын
Most hosting providers already include a built-in lazy load option. Great idea but more code and unnecessary in most cases.
@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 11 ай бұрын
@@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 11 ай бұрын
@@trevoreyre You're right!
@letshev
@letshev Жыл бұрын
Is this applicable to SVG images inside the img tag?
@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?
@codeguy11
@codeguy11 Жыл бұрын
Instructions unclear. My images didn't load
@cadonaumarco3540
@cadonaumarco3540 Ай бұрын
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
@mihao-runs
@mihao-runs Жыл бұрын
height auto sometimes messes up in safari :/
@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 Жыл бұрын
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
@junsu-ho
@junsu-ho Жыл бұрын
classic overcomplicating things from Kevin xD 😅
@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
@brad1785
@brad1785 Жыл бұрын
The real ultimate low-quality image placeholder technique is a progressive JPEG/JPEG-XL.
@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 :)
@nomadshiba
@nomadshiba Жыл бұрын
great
@ioiiooio4080
@ioiiooio4080 2 ай бұрын
What ever happened to using progressive JPEGs or PNGs? I remember that being a standard years ago
@StupidusMaximusTheFirst
@StupidusMaximusTheFirst 11 ай бұрын
Isn't this extra loading of a low-res img redundant, since jpg already has this built-in, in its "progressive" property?
@pinnaclewd
@pinnaclewd Жыл бұрын
Hmmm is this really any better than a webp compressed with lazy load?
@HolgerNestmann
@HolgerNestmann Жыл бұрын
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 5 ай бұрын
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`.
@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
@NovaKirsch
@NovaKirsch Жыл бұрын
Harry??? Harry???
@hunin27
@hunin27 Жыл бұрын
wassup guys
@badcatdesign
@badcatdesign Жыл бұрын
Sometimes we just miss "lowsrc" 🤣
@lucienchu9649
@lucienchu9649 Жыл бұрын
image always drive me crazy, even the most basic styling.
@kliMaLd
@kliMaLd Жыл бұрын
2023 - slow 3G?
@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
@MohammadAk-rx6kl
@MohammadAk-rx6kl Жыл бұрын
Third
@mirabilis
@mirabilis Жыл бұрын
CSS is pain
Under the radar CSS features for your CSS reset
11:41
Kevin Powell
Рет қаралды 49 М.
Avoid These 5 Awful CSS Mistakes
20:42
Kevin Powell
Рет қаралды 198 М.
Quilt Challenge, No Skills, Just Luck#Funnyfamily #Partygames #Funny
00:32
Family Games Media
Рет қаралды 28 МЛН
Long Nails 💅🏻 #shorts
00:50
Mr DegrEE
Рет қаралды 18 МЛН
Smart Sigma Kid #funny #sigma
00:33
CRAZY GREAPA
Рет қаралды 27 МЛН
Make Your Site Lightning Fast With Responsive Images
14:13
Web Dev Simplified
Рет қаралды 88 М.
My top 5 most popular front-end tips
22:07
Kevin Powell
Рет қаралды 63 М.
Learn every CSS Animation property | Complete Guide
10:56
CSSnippets
Рет қаралды 1,4 М.
A new approach to container and wrapper classes
25:27
Kevin Powell
Рет қаралды 269 М.
Make Awesome SVG Animations with CSS // 7 Useful Techniques
12:20
2 Years of C++ Programming
8:20
Zyger
Рет қаралды 8 М.
Avoid these 5 beginner CSS mistakes
21:38
Kevin Powell
Рет қаралды 87 М.
Write less code with these 5 CSS tips
15:38
Kevin Powell
Рет қаралды 50 М.
These font stacks will improve your site performance
11:44
Kevin Powell
Рет қаралды 77 М.
CSS position deep dive
28:14
Kevin Powell
Рет қаралды 108 М.
Quilt Challenge, No Skills, Just Luck#Funnyfamily #Partygames #Funny
00:32
Family Games Media
Рет қаралды 28 МЛН