Design comparison
SolutionDesign
Community feedback
- @SindhujaBandaruPosted about 2 years ago
Hello Chaitya! Congratulations on completing your project👏
To center the container and to make it viewable use
width
,min-height
inbody
section.body{
display:flex;
min-height:100vh;
width:100%;
For
perfume
part to make it capital..perfume{
text-transformation:uppercase;
letter-spacing:1rem;
}
And Intially set padding and margin to zero so that no padding and margin would be applied to the whole html page.After that it will be easy to adjust the both.
*{
padding:0;
margin:0;
box-sizing:border-box;
}
Once visit this website
[( https://www.w3schools.com/css/default.asp)]
**Hope this helps!**😃
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