Design comparison
Solution retrospective
Hello everyone, some tips to improve my code? Any feedbacks are appreciated
Community feedback
- @correlucasPosted about 2 years ago
👾Hello @yeezusch23, congratulations for your new solution!
You did a amazing work putting everything together in this challenge, something you can do to improve the image that needs to change between mobile and desktop is to use
<picture>
instead of<img>
wrapped in a div. You can manage both images inside the<picture>
tag and use the html to code to set when the images should change setting the devicemax-width
depending of the device (phone / computer) Here’s a guide about how to usepicture
:https://www.w3schools.com/tags/tag_picture.asp
. To have your image purple with the same overlay effect, you need to usemix-blend-mode
to make this color blend between the image and the background-color of the container. See the steps below to apply to theimg
orpicture
selector:img { mix-blend-mode: multiply; opacity: 75%;}
Also the font-weight for the h1 should be or
font-weight: bold
orfont-weight: 900
.👋 I hope this helps you and happy coding!
1 - @DavidMorgadePosted about 2 years ago
Buenas Jesús, muy buen trabajo finalizando el challenge, te quedo bastante bien el card y además es completamente responsive, buen trabajo también con los tags html, estás mejorando muchísimo
Como principal consejo te diría que no utilizaras la imagen como un
background-image
en tu CSS, la pondría directamente como una imagen en tu html, si quieres conseguir el efecto morado, puedes meterla dentro de undiv
y a este div añadirle el color morado, después bajandole un poco la opacidad conseguis el efecto de la imagen violeta.Por lo demás no tengo nada más que añadir, buen trabajo.
Espero que mi feedback te sea de ayuda, cualquier cosa me dices!
1@yeezusch23Posted about 2 years ago¡Hola David!
No estaba seguro de que utilizar la imagen como un
background-image
fuera la forma correcta de lograr el efecto morado. Ahora se como lograrlo.Gracias por el feedback! ☺️
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