Latest solutions
Latest comments
- @AFranco-dev@MrEasty94
Hey Andre, great job.... here's some feedback...
- I think you could use a <main> tag to wrap the card, I think this would be semantically correct.
- I think the 'attribution' section could be in a <footer> tag, again I think this would be semantically correct.
- For this, and future challenges, I would recommend setting your box-sizing to border-box. This makes calculating widths, heights, paddings, etc... a lot easier moving forward. One common way to do this is in your CSS, doing the following:
*, *::after, *::before { box-sizing: border-box; }
This sets all elements, including the after and before psuedo elements to the border-box model.
Great effort and keep going! :)
Marked as helpful