DEV Community

Cover image for My Blogspot Project
Shelly Millet
Shelly Millet

Posted on

My Blogspot Project

The intent of my online presence is to introduce myself, network and learn to code. Check me out!

Shelly Millet Blogspot

Top comments (1)

Collapse
 
marcosba profile image
marcosba

You can this CSS so the images don't go outside the posts.

.post img {
width: 100% !important;
height: auto !important;
display: block;
object-fit: contain;
}