Hi! Could someone kindly check my work on Test your skills: CSS and JavaScript accessibility?
Thank you!
My work
CSS1
CSS2
JS1
Test page
Hi! Could someone kindly check my work on Test your skills: CSS and JavaScript accessibility?
Thank you!
My work
CSS1
CSS2
JS1
Test page
Hi @Risa
Here are my comments:
:focus
more prominent than :hover
.vw
for font-size
is that the text isn’t zoomable by the user. ( WCAG 1.4.4 (AA) states that text should be resizable.)vw
would be in combination with other units. For example: font-size: calc(1.5vw + 1rem);
(Changes with screen size, but is always larger than 1rem
)Overall, very well solved exercises. Congratulations!
See you,
Michael
Hi @mikoMK,
Thank you for your feedback and sorry for my late reply!
Oh I see, I didn’t realise! Thank you so much
I tried the alternative version using keyup event. Thank you!
Nice!