Latest solutions
Latest comments
- @victorgfz@HandyyWeb
Your code is very good, well done! Just a small thing that can help you, but it's not really necessary : Instead of setting
margin : 0
orpadding : 0
for each element, you can maybe use CSS ResetPersonally, I use :
*{ padding : 0 margin : 0 box-size : border-box }
But choose what seems to be good for you, as I said it can even be skipped. Once again, your code is very good ! Have a nice day !
Marked as helpful - @GreXLin85@HandyyWeb
I think you can improve the responsive layout by using the
<picture>
and<source>
elements to change the image source in relation to the viewport width.Here is a link if you need more information: HTML <picture> element.
Above all, your code is great, well done!
Marked as helpful