Lucas Gabriel
@lucasgabriel2806All comments
- @mojtaba-mehrzad@lucasgabriel2806
You can make small adjustments to element dimensions, such as height and add more precise margins.
- @HtetNaingLynn55555What are you most proud of, and what would you do differently next time?
I just want to take a part in frontend mentor challenges.
What challenges did you encounter, and how did you overcome them?how to position card background image was challenging for me. I read mozilla developer network blog.
What specific areas of your project would you like help with?any suggestion are welcome
@lucasgabriel2806You can use the flexbox property to help you align elements on the screen and to make it responsive for mobile devices. A tip, for mobile devices, use the flex-direction: column property.
- @KhaledSaeed18@lucasgabriel2806
You can use height: 100vh to let the background color fill your entire body
- @Fender60What challenges did you encounter, and how did you overcome them?
I did it without a layout for figma, so there was a little difficulty with dimensions and indents.
@lucasgabriel2806Does the solution include semantic HTML?
- @komijanimatin1@lucasgabriel2806
You can set a higher height for your main div.
- @KhaledSaeed18@lucasgabriel2806
You can set the height: 100vh to let the background-color fill the entire screen. You can also use FlexBox to vertically center your div. Try using this set of rules: body { display: flex; justify-content: center; align-items: center; }
Marked as helpful