Wilson Junior
@willsf2021All comments
- @xStephxSubmitted 2 months ago@willsf2021Posted about 1 month ago
Congratulations on the solution, especially on the form validation! I saw your code and using Tailwind CSS framework does not diminish its merit in any way, in fact, it shows a high level of knowledge! I'm going to try to solve this same challenge using React JS/Styled-components, I hope it's as good as your solution and that you can evaluate it!
1 - @KitalpharSubmitted 3 months agoWhat challenges did you encounter, and how did you overcome them?
I intended to use an unordered list for the clickable links with an
a
nested inside, but when it came to highlighting and changing text color on the links, i ran into trouble...also selecting the link with Tab only focused thea
element which is not what i wanted. Swapping the elements and nestingli
inside ana
somehow fixed that problem. Edit: Had to fix this, as it turns out this is invalid HTML, usingfocus-within
instead offocus-visible
solved the problem.@willsf2021Posted 3 months agoHi! Is very similar to template, congratulations! I noticed that you use ":hover" to change the background color of the links, in actually is on ':active" to do this, but your project is still amazing that way!
1