Kavin is my number one hero in CSS, and I always enjoy his KZbin videos. Thank you for your kindness and the effective teaching techniques you're using...
@killerwolle8817 күн бұрын
Form vlidation: front-end: for the user, back-end: for yourself
@pentexnyx58838 күн бұрын
Kingpin KP
@MrWhiteav617 күн бұрын
Incredible stuff Kevin! Love your positivity brother and your knowledge is seemingly infinite 🎉
@k16e11 күн бұрын
So useful. So much fun. Thanks Mr. Powell and JetBrains.
@merotuts981917 күн бұрын
Lord KP on JetBrains 🤩
@phillduffy17 күн бұрын
Hello Frontend Friends!
@pookiepats17 күн бұрын
😒
@nulljeroka18 күн бұрын
Awesome!
@StingSting84412 күн бұрын
I actually don't mind using these native features but what happens is that the corner cases between browsers keeps going up and it's so hard to maintain and there is no ROI
@clevermissfox13 күн бұрын
Not that I think you should build a tabs component with CSS only especially because of all of the Aria attributes that need to be added and removed, but the comment about needing to be able to use your arrow keys with tabs to make it accessible made me wonder if it was possible to do that with radio groups for tabs? It was not long ago I had discovered that pressing the tab key on your keyboard when you're in a radio group (where they all have the same name) doesn't move to the next radio button, you need to use your arrow keys to navigate between the radio buttons. But as far as the table indexes go, if you have selected a radio button and it's checked , and all of the other table panels are to set to display none, then pressing the tab key should navigate into the active tab panel That said, making an accessible tabs component is much easier with JavaScript
@ahooton15 күн бұрын
I discovered a small issue with the hint and error CSS when using this on my project... When clicking from a focussed text input to either a radio button or submit button, it was forcing me to click twice in order to focus the new element. I managed to debug the issue by removing display:block. Any suggestions as to how I can get this working properly?
@NickTheCodeMechanic17 күн бұрын
For the password, I'd modify the regex to limit the total number of word chars and number chars, respectively. E.g. (?=....){,8}(?=...){,4}, where the first group your word chars and your 2nd your numbers. Also, I get the ^ and $. Those makes sense, maybe. But the `.*` and `.+`, why would that be allowed in a password field when you already have ^ and $ bounding (but not limiting) user input? I'd test it to see if you can't copy paste a whole script in there... I know I'm probably nit picking, but regex is kind of my thing (literally just finished a refactoring engine using regexes).
@imkow15 күн бұрын
Phone apps can use these, right?
@CoolTebza-eh7ig10 күн бұрын
Possible depends on how go about it. What platform where it ran ,etc.. use case. It's up to you what you to run on.
@PaulAllsopp-rh5gb13 күн бұрын
You simply don't use something if you don't need it, just because you know how to. Put another way, the tool you use for everything is not necessarily the best tool for the job. Or another way still: don't write code for something the browser can do already, learn how to call the browser method. Expand your toolset.