Latest solutions
Responsive NFT Preview Card (HTML, CSS)
#accessibility#bemPSubmitted 7 months agoAny feedback would be helpful.
Tic Tac Toe Game (HTML, CSS, Javascript)
#accessibility#bemPSubmitted 7 months agoAll feedback would be helpful
Responsive BMI Calculator (HTML, CSS, Javascript)
#accessibility#bemPSubmitted 7 months agoAny feedback would be helpful.
Latest comments
- @Yago14Submitted 8 months agoP@vcollins1Posted 7 months ago
solution matches the design
accessibility can be improved by adding link tags
<a href'="#"><strong> Jules Wyvern</strong></a>
0 - @ronrkSubmitted about 2 years ago
Tic-Tac-Toe / Vite&React,Context API,React Hooks, Styled-Components,
#accessibility#react#styled-components#vite#bemP@vcollins1Posted 7 months ago-HTML code looks good but more semantic tags could be use to give meaning. -To improve accessibility you could add tab functionality to the mark selection section and the game board.
- When playing the game I notice that your reset button doesn't bring up the dialog.
0 - @semperprimumSubmitted over 1 year ago
- @khaizterSubmitted almost 3 years agoP@vcollins1Posted 7 months ago
Good solution, you could use aria labels to improve accessibility.
0 - @KrishnaPoddar1Submitted 11 months agoWhat challenges did you encounter, and how did you overcome them?
Using a hamburger nav-bar and changing the view in desktop view
What specific areas of your project would you like help with?When I change the view in the desktop view the nav-menu is not aligning properly and I think that the view in desktop for the nav-bar is not that good.
Any other suggestions would be welcomed!!
- @KrishnaPoddar1Submitted 9 months agoWhat specific areas of your project would you like help with?
There is quiet a few issues I have a problem finding solution to.
- The Form is not being centered vertically. Even after min-height of 100vh is provided.
- The Radio box when clicked doesn't change its color. The onclick function's have also been mentioned properly and its been called but the console log when it is clicked doesn't work instead I get a reference error. Similarly for handlebox2 as well.
ReferenceError: handlebox1 is not defined
Any Suggestions/tips would be helpful
P@vcollins1Posted 9 months agoTo increase the clickable area of your radio boxes you can do something like making the width of the label 100%
.box { ...... display: flex; align-items: center; } .box label { ...... display: block; width: 100%; }
0