Latest solutions
Latest comments
- @ecemgoSubmitted about 2 years ago@Mustapha62996Posted about 2 years ago
This is really impressive 🔥🔥
Hopefully I will be able to code like this someday
1 - @chr1swillSubmitted about 2 years ago@Mustapha62996Posted about 2 years ago
Nice work man but I have some opinions that I think could help your code:
- First of all, I think you could make your code responsive by using flexbox. You can add a media query with a max-width of 480px(for mobile phones) and set main tag to
display: flex;
andflex-direction: column;
to align the left and right class containers vertically. You can also modify your code to suit a mobile phone while you are at it(like reducing the width and padding). - Also, try using semantic HTML to make your code more readable. Tags like section and span helps reduce the number of div tags in your code.
Hope I was helpful.
0 - First of all, I think you could make your code responsive by using flexbox. You can add a media query with a max-width of 480px(for mobile phones) and set main tag to