Are You Making These CSS Height Mistakes?

  Рет қаралды 122,540

Web Dev Simplified

Web Dev Simplified

Күн бұрын

FREE CSS Selector Cheat Sheet: webdevsimplified.com/specific...
Heights in CSS are a pain to deal with. They almost never work as you expect and they always seem to be larger or smaller than you want them to be. In this video I will show you why things like height: 100% do not work like you expect and what you can do to make them work.
📚 Materials/References:
FREE CSS Selector Cheat Sheet: webdevsimplified.com/specific...
Mobile Phone Dev Tools Video: • Learn JavaScript Touch...
Viewport Units Video: • Learn Every CSS Viewpo...
Viewport Units Article: blog.webdevsimplified.com/202...
Flexbox Video: • Learn Flexbox in 15 Mi...
Flexbox Article: blog.webdevsimplified.com/202...
🌎 Find Me Here:
My Blog: blog.webdevsimplified.com
My Courses: courses.webdevsimplified.com
Patreon: / webdevsimplified
Twitter: / devsimplified
Discord: / discord
GitHub: github.com/WebDevSimplified
CodePen: codepen.io/WebDevSimplified
⏱️ Timestamps:
00:00 - Introduction
00:31 - Example 1 - Fill Full Page
05:20 - Example 2 - Fill Remaining Space
#CSSHeight #WDS #CSS

Пікірлер: 151
@d1ge
@d1ge Жыл бұрын
Not gonna lie, height in CSS is cursed.
@Amar11115
@Amar11115 Жыл бұрын
true😂
@Atmos41
@Atmos41 Жыл бұрын
@@Amar11115 Not really. If you set html and body to height 100%, this ends up working very well on mobile. Height in CSS works fine, you just need to understand how it works :) there is a lot of CSS overcomplexity out there! You don't need dvh 99% of the time
@outpost31737
@outpost31737 Жыл бұрын
100vh on mobile = migraine.
@thalibmuhammad9519
@thalibmuhammad9519 Жыл бұрын
mobile height is cursed
@vighnesh153
@vighnesh153 Жыл бұрын
@@outpost31737 I did that on my website 2 years back and thought I will have to live with it forever.
@karis7539
@karis7539 Жыл бұрын
you can set height: 100% for body and html, it is widely supported and basically works as a dvh
@moheywael7857
@moheywael7857 Жыл бұрын
I hundred percent agree with that. That's what I do too
@groovebird812
@groovebird812 Жыл бұрын
This is the right answer. Why doing things so complicated if a solution exists. For a beginner in CSS this video is not the best to begin.
@whatisthis__95
@whatisthis__95 Жыл бұрын
@@groovebird812 just use 100dvh instead of 100%. It’s not that hard
@lemon_maho
@lemon_maho Жыл бұрын
That's what I do xD
@blacksmokegearjammer
@blacksmokegearjammer Жыл бұрын
​@Federico R dvh isnt supported many browsers yet unfortunately
@lemon_maho
@lemon_maho Жыл бұрын
the flex grow trick thoughhhh omggg, you're a legend, I've always found ways around the height but this one never occured to me, big thanks.
@gosnooky
@gosnooky Жыл бұрын
This pain with heights in CSS is related to how web pages in general are vertical scrolling by default. In any other application UI framework, such as mobile (Native iOS, Android, RN, Flutter, et al), or desktop (like FX, Qt or Swing), the base behaviour takes into account the full viewport as defined by the device (or window dimensions), and scrolling is opt-in on a per element/component/view basis. I ran into this issue whilst building out an Electron application where I wanted to emulate the desktop experience by making the main DIV a viewport height of 100%, and adding in components that had internal scrolling. It was very difficult to define, say, a view that would have scrolling content on a non-scrolling page that would take up the remaining space in its respective column. It was a YUUUGE pain in the arse, and I never did iron out all the CSS bugs. Mind you, I built this using flex box when it was sort of new. I'd imagine if I needed to do something similar in the future, CSS grid would be more helpful in this regard.
@AviationFreaks
@AviationFreaks Жыл бұрын
Thank you so much for clarifying these concepts. This really helps!
@MB-zj3er
@MB-zj3er Жыл бұрын
dvh was new to me. Thank you very much for this video! You saved me some JS on page sizing!
@OneAndOnlyMe
@OneAndOnlyMe Жыл бұрын
Those CSS cheat sheets are really useful, thanks!
@Monika-tb1xg
@Monika-tb1xg Жыл бұрын
That is exactly what I needed to know! Thank you so much:)
@petrvalenta8835
@petrvalenta8835 Жыл бұрын
Nice trick with the flexbox. Thx Kyle! 👌
@user-mm8uq5wj4q
@user-mm8uq5wj4q 4 ай бұрын
The most helpful video in my css career until now :)
@minhct2511
@minhct2511 Жыл бұрын
Very useful video, thanks Kyle ❤️
@pointzero9
@pointzero9 Жыл бұрын
I appreciate you making this video... Thanks
@BMikel
@BMikel Жыл бұрын
This is what I often lack. thank you for sharing
@bobdinitto
@bobdinitto Жыл бұрын
Flex-grow is really quite a useful little item but generally not the first thing one thinks of in these situations. Thanks for the tip!
@Winter_Wyvern1
@Winter_Wyvern1 Жыл бұрын
I'm not sure if there's one that knows about 'dvh' and 'flex-grow's like even if you build gamey-website-frontend you would rather use some library or premade codes found on google. Like everytime it comes to CSS i'm like "this is the last video i'll ever need" and i start styling and nothing is as expected ... or what the video taught me how it works, once things gets complicated, a wraps them ... BOOM WELCOME TO HELL! 🤣
@thieno22
@thieno22 Жыл бұрын
thank you kyle, very useful
@GaneshSingh1
@GaneshSingh1 Жыл бұрын
Thanks 😊 bro 🙏, I learned something new today
@themargolan
@themargolan Жыл бұрын
Thanks! And what about making video about another cursed theme, selecting nth-element using css?
@WinchesterD
@WinchesterD Жыл бұрын
Thanks, very userfull hints.
@akeemaweda1716
@akeemaweda1716 Жыл бұрын
This solves my lingering problem. Thanks Kyle
@theisoj
@theisoj Жыл бұрын
Thanks Kyle! 👍
@Drgigolo2022
@Drgigolo2022 Жыл бұрын
Glad I kept watching I knew and use everything he talked about except dvh, will have to take a look at beacuse RWD can be a pain in the ass with heights and widths sometimes.
@alnajafyprogrammer3460
@alnajafyprogrammer3460 26 күн бұрын
فعلا انت مبرمج رائع ولا اعرف كيف اشكر جهودك انا حاليا اتعلم من قناتك كل الشكر لك عاشت ايدك يا بطل
@ToddsDiscGolf
@ToddsDiscGolf Жыл бұрын
Such great content
@krims254
@krims254 Жыл бұрын
I would love to see some videos on tailwindcss, some tips and tricks ect.
@luis96xd
@luis96xd 10 ай бұрын
Great video! I didn't know that dvh existed! :0
@mateusbraga1960
@mateusbraga1960 Жыл бұрын
tu é um anjo na terra valeu!!!
@nayem6386
@nayem6386 6 ай бұрын
man, thanks! CSS is crazy sometimes
@paulorsbrito
@paulorsbrito Жыл бұрын
Man... you're so such a hero that I'm beginning to feel less and less angry about your beauty
@alexeleave4551
@alexeleave4551 Жыл бұрын
Huh, "dvh" was blown my brain 🤯 cool!
@aram5642
@aram5642 Жыл бұрын
Off topic: Web stores differ in how the behave upon navigation back (like: from a product view back to the gallery view which you have scrolled down a lot). Some do restore original scroll position, some don't, some frameworks provide settings on the router to control that, but what are the browser defaults, what can a dev do to effect this behavior? I'd be curious to hear you talk about it.
@mrt5136
@mrt5136 Жыл бұрын
Hello thx for your awesome work! What about svh & lvh? Currently poorly supported but maybe in the future :D
@DamonMedekMusic
@DamonMedekMusic Жыл бұрын
I wish tailwind offered better height options. I have constant height issues especially with scroll bar chopping the end of my divs off.
@LorenzoJimenez
@LorenzoJimenez 9 ай бұрын
Works good if you dont want the .card to be the height of the screen. For that, I use min-height: calc(100dhv - 10rem); The rem is the height of the header and footer.
@kanakaraju7655
@kanakaraju7655 Жыл бұрын
Love it 💕
@azewasted5177
@azewasted5177 10 ай бұрын
Thank you,finaly found
@keaton718
@keaton718 Жыл бұрын
I like height vh, it's very adaptable for some things. It needs a max height to stop it from being too big, and it causes weirdness if you adjust window height back and forth but the only people who do the are web designers.
@DocBobD
@DocBobD Жыл бұрын
You are a legend
@ganymede242
@ganymede242 Жыл бұрын
What height setting did you use for your hair? Looks amazing LOL.
@manu-my3fv
@manu-my3fv 5 ай бұрын
maan gye guru aap ko🙏🙏
@JosephMaramba
@JosephMaramba Жыл бұрын
What about setting both html and body to a height of 100%? Or using grid, with the actual size of the card head and footer and using auto for the body?
@ravimakwana1641
@ravimakwana1641 Жыл бұрын
Can you make a video about to test responsive using mobile as you shown in this video in detail? thanks.
@appwala3728
@appwala3728 Жыл бұрын
Thank you i solve a problem of vh height with this video ❤️❤️
@jamjam3448
@jamjam3448 Жыл бұрын
Thanks bro
@sohibabduvaliyev151
@sohibabduvaliyev151 Жыл бұрын
Thanks
@dopetag
@dopetag Жыл бұрын
This was definitely Web Dev Overcomplicated this time. html and body to height: 100%; and you are good to go 😉
@randallhale5529
@randallhale5529 Жыл бұрын
god I needed this
@arieljosephrivera1098
@arieljosephrivera1098 Жыл бұрын
do you have a tutorial on how to center an element on screen may be vertical or horizonal?
@dimasheiko
@dimasheiko Жыл бұрын
dvh is sure great, but it still has a weak browser support. great video tho 🤗
@orpheusohms
@orpheusohms Жыл бұрын
Just put height 100% on the and tags... Great tut though...
@user-mo3cw6go7c
@user-mo3cw6go7c Жыл бұрын
Grate video! One caviat the use of .body class was a little confuse with actual body tag. Again grate video!
@michalnowak2181
@michalnowak2181 Жыл бұрын
thx
@stewie2619
@stewie2619 Жыл бұрын
very useful video, thank you if i may have a question, because its not clear for me why the body background-color fills up the whole page if the body actually isnt that high?
@WebDevSimplified
@WebDevSimplified Жыл бұрын
That is just how css was made. I think they did this since there was no way to make something fill the full viewport height when css was first created.
@jshstuff
@jshstuff Жыл бұрын
@@WebDevSimplified from the CSS W3 spec: "The background of the root element becomes the background of the canvas and covers the entire canvas, anchored (for 'background-position') at the same point as it would be if it was painted only for the root element itself. The root element does not paint this background again. " but I thought the html element is the root element, right..? like the :root selector? So I thought I might ask ChatGPT for an answer: Me: "hi ChatGPT, the spec indicates that the root element's background overflows and becomes the background for the whole canvas. If the html element is the root, not the body, why does applying a background to the body set the background color for the whole canvas, even if the body doesn't fill the canvas?" ChatGPT: "You are correct that the HTML element is the root element and not the body element. However, in most cases, the body element is the containing block for the entire document and covers the entire canvas. Therefore, when you set a background color or image on the body element, it effectively becomes the background of the canvas. To be more precise, when you set a background on the body element, the browser will render it as the background for the body element and will also propagate it to the viewport (which is the visible portion of the canvas) and any areas outside of the body element. This is because the body element fills the entire viewport by default, so the background applied to it will cover the entire canvas. So while the root element technically overflows and becomes the background for the whole canvas, in practice, the body element is usually used as the containing block and has the same effect. **So, TL;DR: it's all about the containing block of the element with the background** But ChatGPT said "*in most cases* the body element is the containing block for the whole document". So I asked a follow up: Me: "show me a case where setting a background on the body will not cause propagation to the html element" ChatGPT: "One case where setting a background on the body element will not cause propagation to the html element is when the html element has a fixed height and the body element's height is set to 100%." "In this case, the body element will only take up the height of its content, which may be smaller than the height of the html element. As a result, the background set on the body element will only cover the area within the body element and will not propagate to the html element." "Here is an example of CSS code that demonstrates this:" ``` css html { height: 500px; background-color: blue; } body { height: 100%; background-color: red; } ``` " (end chatGPT) This was a cool little rabbit hole to go down :)
@ritaambarawatiya-on2or
@ritaambarawatiya-on2or Жыл бұрын
Can you make video about orm sequelize and plus cheat sheet?
@HampusR
@HampusR Жыл бұрын
The caption says ”AIDS and CSS are incrediby painful to deal with”… 😮
@Winter_Wyvern1
@Winter_Wyvern1 Жыл бұрын
7:33 what's with the flex-grow: 1, why did the Footer's whitespace's gone? I also suspect the goal was to move Header to the most-bottom-possible and a fix would be to set min-height: 100px to the .footer yes?
@bobross2404
@bobross2404 Жыл бұрын
1:05 the body isn't taking up the whole height though, it's as large as the div content. if you set both div and body to 100%, it will work since the html itself takes up the whole height
@jain5852
@jain5852 Жыл бұрын
Codepen please
@Tin9102
@Tin9102 Жыл бұрын
I read this cool hack on css tricks where u can use { position: sticky; top: 100vh; } on the footer and it sends the footer to the end always. I think its cool addition to this video.
@rnater7145
@rnater7145 Жыл бұрын
"Hovering over the top of my body" - I thought you died for a second there :D
@abhyudayjaiswalyt
@abhyudayjaiswalyt 5 ай бұрын
In second example, what should i do to ensure that card height doesn't grow beyond 600px and if the body has a lot of content I get a scroll bar?
@christian-schubert
@christian-schubert Жыл бұрын
Still think that this is a bug in CSS. If the height of the body only makes up a certain amount of percentage/pixels/gummy bear units of the window, then so should the background...
@Trazynn
@Trazynn Жыл бұрын
'Scaled/Proportional Content with CSS and JavaScript' is an interesting blog to walk through, if you need any content.
@okeyshourovroy2769
@okeyshourovroy2769 Жыл бұрын
Can you please make a video on aws cloudfront signed cookies to serve private images and videos in nodejs server and reactjs front end. There is not content related this topic. 🙏
@cfv1984
@cfv1984 4 ай бұрын
You can always use height: 100% for everything containing your wrapper, instead of whatever the broken viewport unit of the year is
@BohemianOnTheRoad
@BohemianOnTheRoad 8 ай бұрын
ধন্যবাদ
@cenkakay3506
@cenkakay3506 Жыл бұрын
Just don't forget to declare height on parent elements. And don't use "vh".
@Veluc1f3r
@Veluc1f3r Жыл бұрын
Whaaaat!?!? F@c#ing "dvh"?!?!?! Oh my Binary! Where has it been all those years?!?! I've just checked it out, and found out that in 2022 css got: svh, lvh, dvh, svw, lvw, and dvw.. FINALLY no more dealing with that address bar nighmare! ^_^ You just changed my life! Thanks brother!
@GGGGGGGGGG96
@GGGGGGGGGG96 5 ай бұрын
The behavior of the body-height is very weird (Minute 2:20): It has height of 400px, you can see this because of the blue-border, but the background-color which is #333 fills the entire screen. So the body is 400px height, but on the same time it is also 100% height.
@whatisthis__95
@whatisthis__95 Жыл бұрын
In the last example, instead of using flex, can you just use position: relative on the footer and give it bottom: 0? I’m not on my computer but I think it should work. And give position: relative on the card aswell so the bottom is referred to that
@idrisAkbarAdyusman
@idrisAkbarAdyusman Жыл бұрын
Hi Nice video!, i've been using the flex-grow, but I have a problem, how can we make the body of the card to have a scrollbar when the content exceeds the min-height? as you showed in the video it will expand the card and in my use case I don't want that. I want it to fill the remaining height but when the content gets higher than the min-height I want it to have a scrollbar. I've tried to set the scroll-y to scroll but it doesn't work. Thanks
@khaledd453
@khaledd453 Жыл бұрын
if you don't want the container to go beyond a certain height then you should go with height instead of min-height, or use max-height alongside min-height. when the content goes beyond the limit of the container it will 'overflow' and act based upon the overflow property, which in your case for showing scrollbar it should be auto (default) or scroll
@idrisAkbarAdyusman
@idrisAkbarAdyusman Жыл бұрын
@@khaledd453 Whoa, thanks a lot for replying my comment man, appreciated it.
@snehalyadav5492
@snehalyadav5492 Жыл бұрын
Hi Kyle, I want to take your CSS course. Just want to know what will be the subscription period of the course?
@WebDevSimplified
@WebDevSimplified Жыл бұрын
The course is lifetime access.
@codingandEnglishlearning
@codingandEnglishlearning Жыл бұрын
The child element will take the 100% available height of the parent element, so we should first specify a height for parent element otherwise it will not work.
@anutaNYC
@anutaNYC Жыл бұрын
This is cool with three divs, what happens when you need more columns and rows inside the body
@adamuk73
@adamuk73 Жыл бұрын
Use the body as a flex container or use grid. Grid-template-area is good for this
@anutaNYC
@anutaNYC Жыл бұрын
@@adamuk73 i love grid just forgot a lot 😭 been mostly building financial apps
@24fad5ac
@24fad5ac 11 ай бұрын
Turn on subtitles from the start
@healerdance7
@healerdance7 Жыл бұрын
When I saw the title and thumbnail my answer was "Yes" xd
@user-ob9qm4br2j
@user-ob9qm4br2j 3 ай бұрын
you just have saved my ass
@pajeetsingh
@pajeetsingh 6 ай бұрын
Using flex to solve header footer issue seems like hack or overkill. Surely the Html standard people must have encountered this issue.
@ahmadmuslih
@ahmadmuslih Жыл бұрын
Kyle I think you forgot to put the video card on 3:34
@ahmadmuslih
@ahmadmuslih Жыл бұрын
3:30
@user-os2sg1nn6e
@user-os2sg1nn6e Жыл бұрын
👍👍👍
@benoitgrasset
@benoitgrasset Жыл бұрын
can you provide us the codepen ?
@ofskittlez
@ofskittlez 10 ай бұрын
My body certainly takes up too much space. But I've been trying to lose weight!
@kira-t
@kira-t Жыл бұрын
I like your videos, but one thing i get confused about is, your mimic always has this glow in your eyes and this slightly smile on your face that kinda tells : HEY THE WORLD IS AWESOME AND EVERYTHING IS EXCITING. But your voice is monotone perfect to sleep along with and tells something like : lets calmly talk about an interesting topic that i just found in a newspaper. This contrast is wired, but unique what is good ~
@djfilipdj
@djfilipdj Жыл бұрын
Maybe just use 100% svh? Instead dvh for mobile responsivness
@isaacjon
@isaacjon Жыл бұрын
The only reason why i feel frontend is hard because of this styling stuff
@outpost31737
@outpost31737 Жыл бұрын
I think once you get your head around positioning and the box model CSS becomes less intimidating
@WyzrdCat
@WyzrdCat Жыл бұрын
LMFAOOOOOOO the auto caption interpreted your first line as "AIDS and CSS are incredibly painful to deal with"
@kprod.agency
@kprod.agency Жыл бұрын
const vh = window.innerHeight * 0.01; document.documentElement.style.setProperty('--vh', `${vh}px`); $(window).on('resize', function () { var vh = window.innerHeight * 0.01; document.documentElement.style.setProperty('--vh', `${vh}px`); }); .inner { height: calc(var(--vh, 1vh) * 100); }
@insigniamalignia
@insigniamalignia 11 ай бұрын
shouldn't flex-grow be inside of a child of display:flex? for example,
@alivalishov
@alivalishov 4 ай бұрын
Why not setting for both html and body 100% instead of making things this much complicated?
@imadev4861
@imadev4861 Жыл бұрын
I think vh and vw work
@varunemkakkar
@varunemkakkar Жыл бұрын
0
@JasonJA88
@JasonJA88 Жыл бұрын
height:100vh; height:100dvh;
@carit.psicologo
@carit.psicologo Жыл бұрын
Height: 100vh
@kashmirtechtv2948
@kashmirtechtv2948 4 ай бұрын
Flex grow 1
@for-pete-sake
@for-pete-sake Жыл бұрын
1:06 I can only see your head
@kinstar
@kinstar Жыл бұрын
Remember 100% of its parent
@Math_Samed
@Math_Samed 11 ай бұрын
But 100 vh will work
@TheBenTonks
@TheBenTonks 10 ай бұрын
are you saying "AIDS and CSS are incredibly painful" at the start, because cc thinks you are and now I do
@k4qdex
@k4qdex Жыл бұрын
height needs to be removed from css lol
@outpost31737
@outpost31737 Жыл бұрын
I do worry about you. Your rooms always look sparsely decorated with very little furniture. I hope you are not sofa-surfing :)
@nomad100hd
@nomad100hd Жыл бұрын
I have nicer guitars. 😝
@davyd_1
@davyd_1 19 күн бұрын
Too much water, video could be 1 minute of time
The problems with viewport units
13:23
Kevin Powell
Рет қаралды 354 М.
Learn CSS Subgrid in 14 minutes
14:19
Slaying The Dragon
Рет қаралды 59 М.
I wish I could change THIS fast! 🤣
00:33
America's Got Talent
Рет қаралды 92 МЛН
🌊Насколько Глубокий Океан ? #shorts
00:42
КАРМАНЧИК 2 СЕЗОН 7 СЕРИЯ ФИНАЛ
21:37
Inter Production
Рет қаралды 452 М.
Java Program: Print Natural Numbers Using Recursion
3:59
CODE JAVA WITH AZ
Рет қаралды 2
Why Signals Are Better Than React Hooks
16:30
Web Dev Simplified
Рет қаралды 458 М.
Avoid these 5 beginner CSS mistakes
21:38
Kevin Powell
Рет қаралды 73 М.
SVG Animation Icons with CSS
7:32
CatWebDev
Рет қаралды 431
CSS Anchor Is The Best New CSS Feature Since Flexbox
15:39
Web Dev Simplified
Рет қаралды 359 М.
6 Advanced Flexbox Features You Probably Don’t Know
14:54
Web Dev Simplified
Рет қаралды 110 М.
How to take control of Flexbox
16:01
Kevin Powell
Рет қаралды 115 М.
I Will Never Write CSS Animations Again Without Using This Tool
12:28
Web Dev Simplified
Рет қаралды 147 М.
Avoid These 5 Awful CSS Mistakes
20:42
Kevin Powell
Рет қаралды 189 М.
Learn Every CSS Selector In 20 Minutes
19:38
Web Dev Simplified
Рет қаралды 439 М.
I wish I could change THIS fast! 🤣
00:33
America's Got Talent
Рет қаралды 92 МЛН