DEV Community

Discussion on: Create a Simple Profile Card Design Using HTML & CSS

Collapse
 
bkristl profile image
Bostjan

Good work, but on quick view you have some unnecessary elements.
in .profile-card-1 .links you have defined

background: #f2f2f2; -> not needed you are overlapping color with anchor
border-top: 1px solid #44d581; -> not need because visualy is not different
margin-top: 35px; -> not needed because you use position absolute and height
border-radius: 5px; -> not needed
color: #de2121; -> not needed

Collapse
 
monalishamondol profile image
Monalisha Mondol

Thanks for pointing out my mistakes and guiding me