Latest solutions
Latest comments
- @osuulolaSubmitted 17 days ago@ramiadiPosted 15 days ago
Hey, I noticed you're using a lot of <div> tags in your code. Have you considered leveraging HTML's semantic elements for better structure and accessibility? I personally using these tags <details> and <summary> instead of <div> tags when using toggle.
Marked as helpful1 - @DiogoGaspar6Submitted 6 months ago
- @osuulolaSubmitted 3 months ago@ramiadiPosted 3 months ago
i see you are using alot of div elements. You should use div less. example <div class="container">, instead of div, you can use main. i see you have a trouble with the accessibility.Maybe try another approach? i personally use mobile first approach. Makes it easier to have more responsive page on different width sizes.
Marked as helpful0 - @canbldSubmitted 3 months ago
- P@ismailhasirSubmitted 3 months ago
- @jrybarskiSubmitted 4 months ago@ramiadiPosted 3 months ago
Many media queries overlap. An example is the difference between (min-width: 50em) and (min-width: 80em). Make sure the rules don't conflict:
0