profile card component using HTML, Scss and Bootstrap
Design comparison
Solution retrospective
What do you guys think about the responsiveness? What do you think about the visual aspect of the page? does it look good? What are some practices that you think can be improved?
Community feedback
- @correlucasPosted about 2 years ago
👾Hola Ricardo, congratulations for your solution!
Your solution design is really good, I liked that border you've added to the card, this gave your solution a personal touch, that's amazing!
You've missed only the background with the double circle, to import more than one image inside the
background-image
all you need to do is the import of one image and add,
comma to add another image. See the code below:body { background-image: url(./images/bg-pattern-top.svg) , url(./images/bg-pattern-bottom.svg); background-size: cover; background-position: top -390px left -437px, bottom -478px right -370px; background-repeat: no-repeat; }
You can note that I've used two import for the images with the comma to separate each image, and also for the other properties the comma is used to manage each image separately. If you paste this code you'll see that now the images positioned.
Hope it helps and happy coding!
Marked as helpful0@RicardoFuentes437Posted about 2 years ago@correlucas Thank you so much for your feedback, i definitely forgot to import both images hahaha, thanks for pointing that out and for the tip, i really appreciate it and i'll use it for future projects :)
1
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