Earlier quoted context omitted.
I'd be worried about both! If you have to clear a float, you can do it even more cleanly in CSS by using a psuedo element. The old trick was to set `overflow: hidden` on the element containing floated items so it would always expand to contain it - but then things like box-shadows get cut off by the containing element. To get around this, you can use an `:after` pseudo-element on the element that contains the float i…
"I'd be worried about both! If you have to clear a float..." Why? I haven't needed to use floats at all since moving to flexbox.
80 front-end job applications – nearly no one had basic HTML/CSS/A11y skills
91–100 of 130 posts
Re: 80 front-end job applications – nearly no one had basic HTML/CSS/A11y skills
#92Earlier quoted context omitted.
I think you missed the point of the post you're replying to. What's the reason that you feel that you want to understand the "real technologies" that run the web? So that you can build better apps with those technologies, right? So, what you really want to do is just build some apps, not learn CSS. See the difference?
If we had been talking about means vs. ends, I would agree. However, we were talking about knowing HTML and CSS vs. knowing abstractions built on top of them. In that context I didn't interpret the post I replied to the same way that you did.
Re: 80 front-end job applications – nearly no one had basic HTML/CSS/A11y skills
#93If you use proper semantic HTML, ARIA attributes are rarely needed. It's a good idea to validate nonetheless, but there's no point in writing: Sign in or Heading I can think of only a handful of aria attributes that would be helpful if you use proper HTML, such as `search`, maybe `toolbar` and a few others. But it's good to validate the markup regardless, to be sure.
Re: 80 front-end job applications – nearly no one had basic HTML/CSS/A11y skills
#94Re: 80 front-end job applications – nearly no one had basic HTML/CSS/A11y skills
#95Reminds me of a fullstack bootcamp graduate I once worked with. I asked him to make a javascript interactive map (literally, copying an example from bl.ocks, but change the data file) just as a test...and after a whole day, he couldn't get it to work. But when he instantiated an entire Rails project and copy-paste the HTML inside of it as its own page, he was able to get it to work.
Re: 80 front-end job applications – nearly no one had basic HTML/CSS/A11y skills
#96If you use proper semantic HTML, ARIA attributes are rarely needed. It's a good idea to validate nonetheless, but there's no point in writing: Sign in or Heading I can think of only a handful of aria attributes that would be helpful if you use proper HTML, such as `search`, maybe `toolbar` and a few others. But it's good to validate the markup regardless, to be sure.
Re: 80 front-end job applications – nearly no one had basic HTML/CSS/A11y skills
#97Earlier quoted context omitted.
I'd be worried they were asking about clearfix as opposed to flexbox.
I'd be worried about both! If you have to clear a float, you can do it even more cleanly in CSS by using a psuedo element. The old trick was to set `overflow: hidden` on the element containing floated items so it would always expand to contain it - but then things like box-shadows get cut off by the containing element. To get around this, you can use an `:after` pseudo-element on the element that contains the float i…
Re: 80 front-end job applications – nearly no one had basic HTML/CSS/A11y skills
#98Earlier quoted context omitted.
I'd be worried about both! If you have to clear a float, you can do it even more cleanly in CSS by using a psuedo element. The old trick was to set `overflow: hidden` on the element containing floated items so it would always expand to contain it - but then things like box-shadows get cut off by the containing element. To get around this, you can use an `:after` pseudo-element on the element that contains the float i…
"I'd be worried about both! If you have to clear a float..." Why? I haven't needed to use floats at all since moving to flexbox.
When isn't it? If you're developing for old (now unsupported) versions of Internet Explorer I'm not sure they'd be bothered about being turned down (unless they knew about that when applying). Just because something was done some way once doesn't make it right, and putting emphasis on 'clearing float' questions would show your company use old, bad practices.
Re: 80 front-end job applications – nearly no one had basic HTML/CSS/A11y skills
#99Re: 80 front-end job applications – nearly no one had basic HTML/CSS/A11y skills
#100Earlier quoted context omitted.
this is all about default CSS values associated with the tag, you can override them as you like which is probably what your relying on.
But obviously when you use your reset.css that all goes out the window anyway... I thought it was some semantic thing for screen readers.