Skip to content

Instantly share code, notes, and snippets.

@dlnsk
Created January 15, 2026 09:27
Show Gist options
  • Select an option

  • Save dlnsk/1e4fce2ac239b1623042aaff7fe69260 to your computer and use it in GitHub Desktop.

Select an option

Save dlnsk/1e4fce2ac239b1623042aaff7fe69260 to your computer and use it in GitHub Desktop.
<!-- Fit image into resizable parent element with no height -->
<div style="height: 0;
padding-top: 100%;
position: relative;
display: block;">
<img src="https://url-to-img"
style="position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
max-height: 100%;
max-width: 100%;">
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment