Design comparison
SolutionDesign
Community feedback
- @Jan-Dev0Posted about 2 months ago
I just took a quick look at the code and noticed the use of !important frequently. This likely happens because Bootstrap is included after your stylesheet, causing Bootstrap’s styles to override yours. To ensure that your styles are applied correctly, you should include your stylesheet after Bootstrap’s in the HTML.
<link rel="stylesheet" href="bootstrap.min.css"> <link rel="stylesheet" href="styles.css">
Marked as helpful2
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