3-Column Preview Card with HTML&CSS

Solution retrospective
Hello, I have a doubt on centering the .wrapper
on the screen for that, I used
The .container
is the parent of .wrapper
<div class="container">
<div class="wrapper">
</div>
</div>
.container {
position: relative;
height: 100vh;
}
.wrapper {
display: flex;
flex-direction: row;
max-width: 800px;
max-height: 400px;
padding: 30px;
position: absolute;
inset: 0;
margin: auto;
}
Please log in to post a comment
Log in with GitHubCommunity feedback
No feedback yet. Be the first to give feedback on Tharun Raj's solution.
Join 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