Skip to content

Instantly share code, notes, and snippets.

@oliverdoetsch
oliverdoetsch / resizeImage.css
Last active September 24, 2018 20:09
automatically resize blogger images to fit full blog post area
.post-body img {
width: $(content.width);
height: auto;
margin-left: -1em;
padding: 0;
border: none;
max-width: 100%;
}
.post-body .tr-caption-container {