Damn, somebody plz develop a sane alternative to CSS.
What does 100% mean in CSS? (2020)
41–50 of 72 posts
Re: What does 100% mean in CSS? (2020)
#42Re: What does 100% mean in CSS? (2020)
#43Edit - Ah! - it's clear with the 'height' slider dragged up: it's one of the dots from the background (except it isn't in the background) grid.
Re: What does 100% mean in CSS? (2020)
#44(R: 93, G: 200, B: 195) That's more green than blue. When you consider that humans have stronger green color preceptors it's definitely green.
Re: What does 100% mean in CSS? (2020)
#45This is why I knew how to be a frontend engineer at one point in life but never pursued it past the early 2000s. The brainpower wasted on web layout is immense.
What about UI development is a waste?
Re: What does 100% mean in CSS? (2020)
#46Earlier quoted context omitted.
What about UI development is a waste?
When you want to do something simple but you have to bring the entire philosophy of CSS into consideration to figure out what the right way to do it is.
Re: What does 100% mean in CSS? (2020)
#47> The surrounding blue box is the parent element. (R: 93, G: 200, B: 195) That's more green than blue. When you consider that humans have stronger green color preceptors it's definitely green.
Re: What does 100% mean in CSS? (2020)
#48Just a little correction: percentage values are computed based on the element's _containing block_, not parent. Most of the time, an element's containing block is its parent, but not always. For more on this: https://developer.mozilla.org/en-US/docs/Web/CSS/Containing_...
I found the rule about absolutely positioned elements interesting given that I often thought their containing block was the closest relatively positioned parent. As outlined in that documentation, though, it's just the closest element that is not statically positioned.
Re: What does 100% mean in CSS? (2020)
#49 left: 50%;
margin-left: -205px;
border: 0px;
width: 410px;
Because when sized to 400px it always clips 10 pixels of the canvas.Re: What does 100% mean in CSS? (2020)
#50This is why I knew how to be a frontend engineer at one point in life but never pursued it past the early 2000s. The brainpower wasted on web layout is immense.
Responsive design did this. Early 2000s there was only 1024 x 768px or a little above maybe.