Latest comments
- @chrisHebs23@parvathyvd
Hi Christopher
First of all good work. One thing I notice is that the dropdown menu is not visible on large screens. I thought of mentioning about it.
Thanks
Marked as helpful - @liamchivers23@parvathyvd
Hi Liam,
Nice Work
You need height and width on the circle to make the border radius a perfect circle. Add below to your list-item will fix the issue for you.
.list-item { height: 4rem; width: 4rem; display: flex; justify-content: center; align-items: center; }thanks
Marked as helpful - @hellomarina@parvathyvd
Hi,
Instead of giving height and width to the individual boxes give width to the parent.
cards { display: flex; justify-content: center; align-items: center; max-width: 50rem; margin: 0 auto; /* min-height: 100vh; //remove this } also remove width and heights from the boxes .box-1 ,2, 3{ /* height: 450px; / / width: 250px; }
That will fix your problem. Always try to use width instead of height. Let the padding, margins define their height. Hope this helps.
Thanks
Marked as helpful - @parvathyvd@parvathyvd
oh ..Thanks a bunch. I might have accidentally added that in the pseudo class. Thanks for pointing it out. That was fast! I really appreciate it.
Thanks :)