Submitted over 1 year ago
Single price grid component solution - HTML, CSS, RWD, mobile first
@webdevbynight
Design comparison
SolutionDesign
Community feedback
- @HassiaiPosted over 1 year ago
Wrap <section class="insert"> within the main tag to fix the accessibility issue. click here for more on web-accessibility and semantic html
You forgot to give the body a background-color.
To center a content on a page using flexbox or grid:
- USING FLEXBOX: add min-height:100vh; display: flex; align-items: center: justify-content: center; to the body
body{ min-height: 100vh; display: flex; align-items: center; justify-content: center; }
- USING GRID: Add min-height:100vh; display: grid place-items: center to the body
body{ min-height: 100vh; display: grid; place-items: center; }
Hope am helpful.
Well done for completing this challenge. HAPPY CODING
0
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