Submitted over 2 years ago
Space tourism website using React Hooks & Router, JS, SCSS
@Kwill3
Design comparison
SolutionDesign
Solution retrospective
I am still struggling with creating a perfectly responsive web page, although most of the time the pages looks alright but in some edge cases the contents will overflow the background. The blur on the navbar is showing on Brave browser but not on FF, is there a way to implement across all browsers? As usual, all comments are welcomed. Thanks for viewing my code!
Community feedback
- @denieldenPosted over 2 years ago
Hi William, great work on this challenge! 😉
Here are a few tips for improve your code:
- add
header
tag and wrap thenav
for improve the Accessibility - add
main
tag and wrap the content of page for improve the Accessibility - use semantic html like
nav, ul, a, button
, for example for the menu the best way is to usenav
with insideul
list of page wrapped bya
- add
transition
on the element with hover effect - instead of using
px
use relative units of measurement likerem
-> read here - firefox does not support the css
backdrop-filter
property, you can add an exception in firefox by putting a solid color there only through@supports
, look here: backdrop-filter and @supports. Another way to implement it is only use different background color or filter supported by browser
Overall you did well 😁 Hope this help!
Marked as helpful0 - add
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord