Тёмный

The problem with percentages in CSS 

Kevin Powell
Подписаться 918 тыс.
Просмотров 105 тыс.
50% 1

We used to have to rely a lot on percentages for our layouts in CSS, but with modern CSS layouts using Flexbox and Grid, they can often be avoided.
✅ What unit to use in what situation: • Are you using the righ...
✅ How to decide when to use Flexbox or Grid: • Flexbox or grid - How ...
⌚ Timestamps
00:00 - Introduction
00:37 - Very simple grid example
02:00 - The solution with Grid
03:22 - A more realistic example
04:17 - The problem with set percentages and flexbox
06:15 - Flexbox solution
06:46 - A potential grid solution
#css
--
Come hang out with other dev's in my Discord Community
💬 / discord
Keep up to date with everything I'm up to
✉ www.kevinpowell.co/newsletter
Come hang out with me live every Monday on Twitch!
📺 / kevinpowellcss
---
Help support my channel
👨‍🎓 Get a course: www.kevinpowell.co/courses
👕 Buy a shirt: teespring.com/stores/making-t...
💖 Support me on Patreon: / kevinpowell
---
My editor: VS Code - code.visualstudio.com/
---
I'm on some other places on the internet too!
If you'd like a behind the scenes and previews of what's coming up on my RU-vid channel, make sure to follow me on Instagram and Twitter.
Twitter: / kevinjpowell
Codepen: codepen.io/kevinpowell/
Github: github.com/kevin-powell
---
And whatever you do, don't forget to keep on making your corner of the internet just a little bit more awesome!

Опубликовано:

 

19 июн 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 123   
@markboots_
@markboots_ Год назад
For the grid auto-fit, there is a little trick for if the screen gets to narrow: Use the min() function within the minmax(). repeat(auto-fit, minmax(min(12rem,100%),1fr)). The 100% will kick in if available space is less than 12rem
@himabimdimwim
@himabimdimwim Год назад
Oho, very cool!
@vukkulvar9769
@vukkulvar9769 Год назад
Shouldn't this be max(12rem, 100%) rather than min(12rem, 100%) for it to mean that ? Here it seem to mean "Minimum size is the smallest of 12rem or 100%"
@markboots_
@markboots_ Год назад
@@vukkulvar9769 when the screen gets smaller than 12rem, 100% is less than 12 rem. So min()
@RealCaptainAwesome
@RealCaptainAwesome Год назад
The more I learn about css, the better I feel about working on the backend. Haha. Good work!
@dancehalllyrics1303
@dancehalllyrics1303 Год назад
I’m studying computer science, but I was self-taught in HTML, CSS, and a bit of JavaScript before I started 1.5 years ago. And the more I’m sitting with Java and MySQL databases, the more I look forward to and fall in love with frontend again, haha! 😆
@HypherNet
@HypherNet Год назад
@@dancehalllyrics1303 Yeah. I've been coding professionally for close to 20 years, another 7 or so before that for fun. Started on the frontend, have done full stack, embedded, etc. Frontend is my happy place. CSS is so cool. Good luck with your career!
@dancehalllyrics1303
@dancehalllyrics1303 Год назад
@@HypherNet Thank you! I simply don’t get it when people say, “CSS is hard”, “Frontend is boring”, and so on. I mean, first of all, you don’t have to worry a second about data transferring/data manipulation. Second of all, you get instant feedback on the code you write, instead of when doing backend, you’ll have to kind of guess what the computer is interpreting your code as. And if it doesn’t meet your requirements, you’ll pretty much just have to guess where something has gone wrong, because the computer won’t be your friend with its cryptic and often non-understandable error messages, whereas with CSS, you get the benefit of the visuals, too! :)
@danielbengtsson9833
@danielbengtsson9833 Год назад
To be fair, it depends on the element you're applying it to. Which is the case with alot of things in CSS. It's perfectly fine to use as long as you know what you're doing. It's fantastic for tables for example. Just keep the inheritence in mind. Here's a crass example: 100% of the body will default to 100% of the AVAILABLE area, as opposed to 100vw that doesn't take the scrollbar into consideration. If you want to base somethings off of the bodys width and it has a scrollbar, you should go with percent as if you use vw, it will essentially make your content look ever so slightly missaligned as your right hand side is now off by a noticable difference on normal screens & laptops. The scrollbar takes up 17 pixels in chrome, which will not be taken into consideration with vw - so if you want something that is truely centered for example, you should go with % instead of vw. As a fun example, make a div 50% of the body width and then under that a div that is 50vw, and you will see what I mean (need the scrollbar to see it, so fill the rest out with some junk or set the height of both of them to 60vh)
@BlurryBit
@BlurryBit Год назад
Learned atleast 3 things today. Thank you for the video Kevin. :)
@KevinPowell
@KevinPowell Год назад
Thank you so much!
@good-luck-ugo
@good-luck-ugo Год назад
I literally just ran into a similar overflow problem today relating to grid and this really helped. Thanks a lot 👍😄
@travis8106
@travis8106 Год назад
I haven't really commented yet but I wanted to take the time to do so. CSS has been clicking more and more for me. You say that you aim to make CSS enjoyable, or at least less painful for some in a lot of videos. I've been appreciating using CSS more lately, and I'd say a huge part of that is thanks to you. Have a happy New Year
@Khari99
@Khari99 Год назад
All my years as a dev and I never considered this at all. I have had so many issues with percentages. Thank you so much!
@L0V3V4MP1R3
@L0V3V4MP1R3 Год назад
When you put the percentage to 33.333 and said don't do this I felt SO called out because I've done the same thing to align 3 dropdown boxes and although I was very ashamed of it I was running very near a deadline lmao. Guess it's time to sneakily update some pages at work...
@omoregiestephen2949
@omoregiestephen2949 Год назад
Caught this right on time. I'm just starting out and it'll be great to know what's best at an early stage.. Thanks for your videos
@spreadItWide
@spreadItWide Год назад
you found the right channel
@DanFarfan
@DanFarfan Год назад
Once again, Kevin distinguishes himself as a heavyweight. Thanks for all your terrific content.
@VasilyPavlik
@VasilyPavlik Год назад
Man. How can you always guess my current problem? I'm struggling with this f....g shit right now. Yesterday and today. Thank you a lot for clarifying!!!!!
@karmakun931
@karmakun931 Год назад
Amazing video! Thank you
@petarkolev6928
@petarkolev6928 Год назад
As always - amazing video! Thanks Kevin and Happy New Year ^_^
@MrKOHKyPEHT
@MrKOHKyPEHT Год назад
Definitely into favorites. Thx a lot for your content =)
@bushigi5913
@bushigi5913 Год назад
Thank you thank you thank you! Your videos are so inspiring!
@berk473
@berk473 Год назад
Great help!👍🏽
@isaac66626
@isaac66626 Год назад
I discovered your channel a couple of months ago and I'm really impressed. I am a web development teacher and I use some of your tips and examples with my students. I usually adapt your examples to the level of my students, but this video is sooo good that I would show it directly to them in class if it had subtitles. Keep it up! Greetings from Spain.
@franksolinsky2365
@franksolinsky2365 Год назад
It does have subtitles. Click CC at the bottom and select your language from the settings cog wheel.
@isaac66626
@isaac66626 Год назад
@@franksolinsky2365 Yes, it has auto-generated subtitles and I can auto-translate them them to Spanish, but the translation is quite poor. My students wouldn't understand anything and I would have to stop the video every so often to explain what Kevis is doing. It takes me less time to generate an example like Kevin's myself.
@franksolinsky2365
@franksolinsky2365 Год назад
@@isaac66626 I see. I had not considered that. Too bad it is not more helpful.
@bilalahmedkhan5876
@bilalahmedkhan5876 Год назад
Great video kevin!
@vladskyofficial
@vladskyofficial Год назад
very helpful, thanks!
@mrc4nl
@mrc4nl Год назад
Thanks for this video, a lot has changed since i last designed web pages (~2010 if i remember correctly)
@mchepen
@mchepen Год назад
ahhhhh i wish you were my teacher. your explanations are like breathing fresh air. i dont even watch your channel to try to find solutions to my projects, I just enjoy and use what i learned later.
@hikari1690
@hikari1690 Год назад
I was confused by mixmax till it turned out to be a typo. Great thing to cover though. I've been told about this but never did get around to researching why % and overusing calc was bad. Thank you for saving us from boring research 🤣
@saaika5922
@saaika5922 Год назад
Usually if you are not an expert i recommend going with some testing. I.e. add 6 articles. Test different resolutions. The more you test. The more bugs you find. The more you understand how to use properly units
@justingolden21
@justingolden21 Год назад
8min in, had no idea about that! I think just designing around fixed containers is the way to go, so instead of different things collapsing at different times, your site is always one of 3 or 4 designs, makes life way easier
@Balvantkushwaha30
@Balvantkushwaha30 8 месяцев назад
sir I really like your all videos this is my first day on your channel and I watched I think 5,6 video in one day because your video is helpful in all areas😇😇
@pablobarrientos2071
@pablobarrientos2071 Год назад
Thanks to this video i know how to use the mixmax property 😂. Excelent content as usual Kevin 👏
@Ksedoxxx
@Ksedoxxx Год назад
i needed it
@_PranavDesai
@_PranavDesai Год назад
Who uses percentages when you can rewrite CSS for all viewports( every dimension that exists )
@KevinPowell
@KevinPowell Год назад
I know (think 🤔) this is a joke, but also way to close to reality, lol.
@afacery
@afacery Год назад
Usually I have 1024 media queries
@good-luck-ugo
@good-luck-ugo Год назад
@@KevinPowell Hey Kevin do you think all the possible css units exist already or are they still going to make another one 😂
@PaulMcCannWebBuilder
@PaulMcCannWebBuilder Год назад
@@good-luck-ugo Just wait for, svh, lvh, dvh, svw, lvw, dvw, svmin, lvmin, dvmin... vi, svi, vb, etc, etc.
@OctagonalSquare
@OctagonalSquare Год назад
I mean, it would work, but at what cost? Answer: depends how much the devs make per hour
@moonman2749
@moonman2749 Год назад
my favorite css rule is make-work: please; it makes the css work the way i want
@mmuralikrishna2881
@mmuralikrishna2881 Год назад
Thank you
@odysseaskorelides7897
@odysseaskorelides7897 Год назад
A ton of respects to this guy
@zackakai5173
@zackakai5173 Год назад
Really goes to show that there's so such thing as "the best way" to do anything in every possible situation. Percentages, like everything else, are a tool that has its place. I'm still happy to use fixed pixel sizes for certain things if it's the best tool for that job.
@Epinardscaramel
@Epinardscaramel Год назад
wow, CSS has evolved so much since my front-end dev days 😮
@razik91
@razik91 Год назад
Cool!
@arshad1781
@arshad1781 Год назад
Thanks
@sergey6661313
@sergey6661313 Год назад
its work!
@daphenomenalz4100
@daphenomenalz4100 Год назад
I learned it the hard way. It is a small project but the css is really long, and i used viewport and percentage at wrong places, now i am not willing to fix them manually, i just added max-width in each of them for meanwhile 🤣 Btw i am just learning so i think that's just part of the process :)
@microlabig4938
@microlabig4938 Год назад
Cool, like! Thx! Q: Can you make a video on the difference between auto-fit and auto-fill grid values?
@naranja6751
@naranja6751 Год назад
Thank you. You'll never stop learning coding. Like almost everyday you find new ways. And this here is awesome^1000
@ibukunokunfolami685
@ibukunokunfolami685 Год назад
Hi Kevin.. Please do a quick insight on display:inline-flex.
@ilverin.matriam
@ilverin.matriam Год назад
Kevin, I really appreciate your teachings. However, some of the principles you talk about do not work for my job, where the designer wants a particular layout at a particular screen size. Do you think you can make a video about how to talk to web designers about best practices in the web, so that the work for the front-enders is easier? :D
@danielk7774
@danielk7774 Год назад
I had honestly wondered if you could ramp up the fr count on it.
@kaloyangeorgiev6824
@kaloyangeorgiev6824 2 месяца назад
Can someone tell me why "min-width: 55em" in the media query instead of some pixel value?
@forbiddenera
@forbiddenera Месяц назад
I just wanna know whats up with the width on the container in the first exampol
@Iehovv
@Iehovv Год назад
Yo guys: noob question: i used different favicons on my website for my homework, used some spans and added the favicon as background for 1 of them, for the second i added the favicon with the id from the website. If i plan to turn that favicon - lets say a menu button- which of these 2 is the correct approach?
@Shubhamyadav-hs2lw
@Shubhamyadav-hs2lw Год назад
Sir Have a lovely day 😊
@makingtheweb6620
@makingtheweb6620 Год назад
Hi Kevin, visual studio @container doesn't seem to work. Is there something stopping it from working?
@KevinPowell
@KevinPowell Год назад
It's support isn't fantastic yet, so vs code linting might warn against it
@Va9bhav
@Va9bhav 8 месяцев назад
Is it ok to use % for Margins and Paddings???
@lemmoor
@lemmoor Год назад
What about using % for container divs? Like, width:80% + margin auto I know someone who uses % and it annoys me sometimes but is it actually a bad practice in this case or just a preference thing?
@KevinPowell
@KevinPowell Год назад
At times it's fine, but people use it in the wrong situations. For a container, a width in a percentage is fine, as long as you have a max-width on there to stop it at one point
@narucy56
@narucy56 Год назад
Hmmm, I've being away from HTML rendering for a while, Chrome can now do crazy tricks with CSS. I'm impressed.
@sinanisler1
@sinanisler1 Год назад
i stil use % alot. but lately i started to use vw vh alot. for layout and stuff % vw vh is good. for fonts and stuff em rem px maaaaybe % but honestly depending on the place every unit can be useful.
@sambritton8730
@sambritton8730 Год назад
This might be a stupid question but if I want to control the number of child elements on a row, then I do need to use specific widths, dont I - flex-basis or for grid repeat(number of columns, 1fr)? The grid solution is only for when you don't care about the number of items per row as long as they fit nicely? Like a sidebar with widgets?
@sambritton8730
@sambritton8730 Год назад
For context I have a Wordpress Block where users/editors can choose the number of blocks per row. Just wondering if I can leverage this...
@programingwithali2461
@programingwithali2461 Год назад
👍
@jesusolaizfelix71679
@jesusolaizfelix71679 Год назад
5:10 , "don't do this please" is killing me
@outpost31737
@outpost31737 Год назад
I tend to use max-width a lot in my work.
@ofeenee
@ofeenee Год назад
The “fr” unit should be part of the acceptable units for width and height.
@VEOdev
@VEOdev Год назад
Make video about writing little css, or css good practices, I always end up writing a lot of css I'm not a web developper I don't know if it is always the case
@nomadshiba
@nomadshiba Год назад
not related to the video but a while ago i realized that css really needs a feature that we can edit existing colors, similar to `calc` change saturation and hue, brightness and opacity etc, anything you can do with filters and since it doesnt exists i always have to use a lot pseudo or pseudoish elements for stuff, so i can edit them with filters, and opacity and stuff alternative is using --primary-color-transparent --primary-color-1 2 3 4 etc, which is not ideal with vanilla css i think best solution atm is doing something like this: - use hsla - have --primary-hue --primary-saturation --primary-lightness --primary-alpha - then do things like this, hsla(calc(var(--primary-hue) * 1), calc(var(--primary-saturation) * 1.2), calc(var(--primary-lightness) * 1), calc(var(--primary-alpha) * .75)) i think since web framework im using lets me change style with js, i can just generate the style with js too and have stuff similar to `background-color: ${color.primary.a(.75).s(1.2)}`
@MeepChangeling
@MeepChangeling Год назад
What if I don't want my site to work on anything other than a full-screen 16:9 pannel? Why would this be useful to me in that case?
@StarOnCheek
@StarOnCheek Год назад
2:50 here, have a horrible, evil, but perfectly working solution calc(100% - 15rem - var(--gap-size))
@danielbengtsson9833
@danielbengtsson9833 Год назад
I love calc - solves so many issues. Just use it sparingly as it is a bit on the slow side.
@mrfarenheid
@mrfarenheid Год назад
"Nobody knows" - best of the year
@windmaomao
@windmaomao Год назад
I'm a bit fan of `flex`, but i think i should start to use `grid` more often.
@Nothwarren
@Nothwarren Год назад
On your real life example theres an issue right ? For ultra wide screens if the side content is not fixed max size then we will see columns where we want to have rows
@decathemaster4912
@decathemaster4912 Год назад
.sidebar-grid on which element? .card on which elements?
@mutantthegreat7963
@mutantthegreat7963 Год назад
I remember years ago trying to get a webpage to look right by adding things like: left: 23px etc lol
@KevinPowell
@KevinPowell Год назад
If anyone says they haven't done that they're lying 😂
@dbweb.creative
@dbweb.creative Год назад
If only css had a way to define custom units and then set them via javascript. I am not talking about properties, but similar to how rem can be used in this way, but dev-defined.
@Element_Finland
@Element_Finland Год назад
Do you have an example of an use-case and a definition? I'm curious
@spreadItWide
@spreadItWide Год назад
I was thinking the same thing, I was going to say something that calculates padding + border and subtracts it automatically when you use that dev-defined measurements, so for example, width: 100av (available space) with padding 5px border 1px would make the div width: calc(100% - 12px), but without having to use calc()... if anyone follows that lol
@dbweb.creative
@dbweb.creative Год назад
@@Element_Finland rem is typically set to 62.5% (10px) for ease of coding and to allow for dynamic user scaling of font-related things. Also rem is a global unit, so it can be overriden at root with javascript. For web apps to accomodate interface behaviors at different resolutions and window aspect ratios I had to track those through javascript and set rem each time window changes. But this way rem no longer can fulfill its primary font-related role. So would be nice to have a root level unit for all kinds of dev-defined measurements that can be set and reset, and leave rem alone for its primary use case.
@some5794
@some5794 Год назад
In width, you add a bunch of values, where can I learn css like that?
@hobbit125
@hobbit125 Год назад
I learned a lot from CSS Fred Armisen.
@vothaison91
@vothaison91 Год назад
ah, remember the good old days with 33.33333% and 66.66666%? me neither
@muldoon67
@muldoon67 Год назад
Hi Kevin, a couple of questions. 1. My VS Code reports that 'container-type' is an unknown property. I am using the latest version of VSC. IS this supported? 2. I notice an HTML error in your file. You have not closed the inside of the . However your VSC does not show there is an error. Does the CSS still work correctly with this kind of error? I come from an XML background where the software would complain about any errors.
@scragar
@scragar Год назад
1. `container-type` is a perfectly fine property, it's just only been implemented by browsers for the last 6 months or so. VSCode has never been very up to date so missing things like this is to be expected. 2. Closing tags are optional, but recommended(browsers are expected to close tags when the parent closes or the document ends if no closing tag is specified - this can cause bugs though if you start nesting the same element as a closing tag for it will always be understood to be the last opened). HTML was based on SGML, of which XML is a more strict interpretation(which is why they're so similar), there's been attempts to unify them(XHTML), but that didn't really work because a lot of developers were lazy(causing errors they didn't want to fix) and IE refused to support it correctly(forcing you to use the wrong doctype, going into quirks mode randomly on valid documents, etc).
@jenstornell
@jenstornell Год назад
Today I had a problem like this but with flex. Flex-wrap, gap and some items 50%. I had to use calc. Felt like a hack.
@KevinPowell
@KevinPowell Год назад
Ah yeah, I hate that so much, lol. Another reason I prefer grid :P
@JulianColeman03
@JulianColeman03 Год назад
Hereby petitioning W3C to add `mixmax` function to CSS
@helloimash
@helloimash Год назад
I'm willing to admit that I've written CSS for like 8 years and still don't know how the keyword auto-fill actually works. I would watch the hell out of a video on auto-fit.
@semikolondev
@semikolondev Год назад
On my side not using % it's like not using metric in 2022. Simplicity is key in our world where everything is on top of anything and everything and more and more reliant on X framework on the edge.
@KevinPowell
@KevinPowell Год назад
There are times when percentage is useful, but with modern things like flexbox and grid, it's really not something we need very often. Combined with gap, it can be downright problematic. The amount of CSS I help people with where the solution is to stop using "fixed" percentages (like 33.333%) - there is probably a better word for that, but whatever - is overwhelming. If you understand when and where to use percentages, it's fine, but most people just blindly throw numbers in there and it falls apart, and a lot of the time the solution is to not use something like fr with grid, or to use flex and not even use percentages anywhere.
@meepk633
@meepk633 Год назад
I have fallen in love with CSS though. I've been programming in low level languages since I was a kid in the early 90s. I only picked up web development in the past year so I could help my parents' church with their site. CSS is great. It's incredibly easy to learn but the skill cap is nearly infinite. I have to stop myself from writing 1000000x over-engineered scss files now.
@michaeledwardharris
@michaeledwardharris Год назад
I'm madly and deeply in love with both CSS and KP :)
@mrsilvadecals
@mrsilvadecals Год назад
When you're using flexbox and you have 1 image and a paragraph as the only children. You want them to display one next to the other. Why the paragraph takes more spaces than the image? Even when you use flex: 1 1 1; The image tends to get smaller or shrink compare to the paragraph.
@NeoKailthas
@NeoKailthas Год назад
Chatgpt can't do this. Instead of the Turing test, we should have the css test
@tomaszchmielnicki8676
@tomaszchmielnicki8676 Год назад
I've been avoiding using CSS percentages as much as possible, they don't feel right lol
@BenCarverGraphics
@BenCarverGraphics Год назад
CLAMP use CLAMP
@luckylukeskywalker
@luckylukeskywalker Год назад
The moment you try to use % with flex the problem starts..
@RussMichaels
@RussMichaels Год назад
Fr Looks very handy, but alas in WordPress this is not an option. At most i can choose from px rem em % vw ch I have never seem fr as an option.
@awesomedavid2012
@awesomedavid2012 Год назад
You guys use CSS ?
@talkdatrue
@talkdatrue Год назад
Who tf uses % for grid and flex I’m wondering
@cedricsantos8651
@cedricsantos8651 Год назад
Believe it or not, a lot of developers aren't that aware of responsiveness in general and other measuring units that css has. I cannot understand how did this happen though, but stills being a fact hahaha
@KevinPowell
@KevinPowell Год назад
I see it pretty much every day, lol
@Gearyco
@Gearyco Год назад
ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-vQAvjof1oe4.html - His grid-ish technique uses %. If you need a fixed number of columns with flexbox, there aren't many options. Of course, this is why I avoid Flexbox, but there are some cases where it's the better option and a % might be needed.
@FunkyEspelhoCat
@FunkyEspelhoCat Год назад
Mfw the most human readable value in CSS is apparently a bad choice 😑
@SebastianNeikes
@SebastianNeikes Год назад
I've come to this video three times already because you showed some functionality that was exactly what I need, yet the video did not help me at all because you didn't post the whole code.
@SnS-SpartaN
@SnS-SpartaN Год назад
*_I hate CSS_*
@shadowsbane171091
@shadowsbane171091 Год назад
this is kinda BS, this completely depends on what elements you are using.
@designdust
@designdust Год назад
this is why I'd rather use frameworks than waste my time fiddling with these kinds of stuff
@muhammadhasnat9835
@muhammadhasnat9835 Год назад
Css is simple, you make it feel overwhelming.
@WildlyStapled
@WildlyStapled Год назад
Just now hearing about fr. I still can't believe CSS hasn't grown past the percentage problem. I've been doing hobby webdev for over a decade, and I always wished that we could just use percentages to mean, "Percent of space remaining in parent" instead of "Percent size of parent", and so many of my problems would be erased.
@1Chitus
@1Chitus Год назад
Who uses percentages when you can rewrite CSS for all viewports( every dimension that exists )
Далее
How to make a nice site with less CSS
18:56
Просмотров 55 тыс.
Avoid These 5 Awful CSS Mistakes
20:42
Просмотров 189 тыс.
When Steve Wants To Measure The Dog'S Height 😂️
00:19
RC Helicopter save the PIG 🚁🕹️🐷 #shorts
00:25
Asus  VivoBook Винда за 8 часов!
01:00
Просмотров 274 тыс.
Stop fighting with CSS positioning
21:35
Просмотров 90 тыс.
Flexbox or grid - How to decide?
18:51
Просмотров 702 тыс.
Probably the most underrated (and useful) CSS feature
21:11
Learn flexbox the easy way
34:04
Просмотров 681 тыс.
Avoid these 5 beginner CSS mistakes
21:38
Просмотров 68 тыс.
Rust's Alien Data Types 👽 Box, Rc, Arc
11:54
Просмотров 134 тыс.
Top 10 CSS One Liners That Will Blow Your Mind
13:34
Просмотров 907 тыс.
When Steve Wants To Measure The Dog'S Height 😂️
00:19