Latest solutions
Latest comments
- P@banban1023@tossik8
Great solution! Consider adding transition and border radius properties to the image overlay.
- @waltertaya@tossik8
Great work!
I would make your web page more responsive because the image does not load for mobile devices. Try to add images based on the size of the screen. For that you can replace your
<img/>
tag with something like this:<picture> <source srcset="your image for mobile devices" media="(max-width:400px)" /> <img src="your image for desktop devices" alt="" /> </picture>
Marked as helpful - @MatiDN@tossik8
You can add backgrounds
- @MelloFrontEnd@tossik8
You can add
background-repeat: no-repeat
and addbackground-size: cover
to make it look closer to the original design