I'm using HTML, CSS, and Bootstrap, please check it out, and leave me a review so i can do better on my next project. Thank you!
- 1
Join Our Slack Channel
Chat and discuss solutions with a growing community of developers.
I'm using HTML, CSS, and Bootstrap, please check it out, and leave me a review so i can do better on my next project. Thank you!
Hello! You've done great. Here are my feedbacks - I noticed you made use of padding with percentage as the unit on each section, this isn't a very good idea cause on a very large screen it could break the layout and make it look messy. I'll advice you have a container class like this: ``` .container { } ```
I'm sorry for sending the message without completing it... .container { width: 90%; max-width: 1200px; margin: 0 auto; } Then you can use that class around each section of your page, allowing the sections to have the same max-width; Also using the unit percentage isn't really the most efficient way, cause it's relative to its parent. I advise you to learn about units like rem and em.
Hello! Thank you so much for your feedback! I'll note and implement it for my next project! ^^