Latest solutions
Blog Preview Card using HTML and CSS
Submitted 23 days agoI feel pretty confident in most of my code. The main thing I'm trying to work on now is being more organized in my code, so I'll definitely take any organization tips for CSS. While mine may not line up perfectly with the solution web page, I'm happy with it.
Latest comments
- @shrey5924@Lanncrotts
Looks like someone beat me to it regarding the missing images, but I would also recommend you check your spacing. On smaller screens, your QR code isn't centered. It is centered on a full screen computer. Try centering it using: margin-right: auto; margin-left: auto; then you can set a value for the top margin using margin-top. Not sure if that necessarily the "correct: way of doing it, but I know that's what worked for me! Looking in your code, it looks like you used a div to contain the entire QR code block including text, but forgot to add </div> for the .outer <div> element. Hopefully my comment can be somewhat useful!! Great job!