@AleeyuDevSubmitted 11 months ago
Anthony Sanchez
@antsanchez198All comments
- @antsanchez198Posted 11 months ago
Hey Aliyu, It looks great! I would just want like to provide some feedback :)
- For the <img> css attributes, you can just change the width and leave the height empty or to "auto". This will prevent the image from getting stretched out and keep the aspect ratio.
Example: .image { width: 250px; height: auto; margin-right: 0; margin-left: 0; border-radius: 10px; }
OR
.image { width: 250px; margin-right: 0; margin-left: 0; border-radius: 10px; }
Marked as helpful0