Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Corrects image aspect ratio #575

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

S0AndS0
Copy link

@S0AndS0 S0AndS0 commented Feb 19, 2021

Edits _sass/minima/_base.scss

Setting CSS of max-width: 100%; may be combined with height: auto;
which causes image height to shrink if view-port is less than image width.

Note, this may require that image HTML attributes for height
and width be defined, eg...

<img alt-text="Place holder image of a cat"
     width="700"
     height="500"
     src="https://placekitten.com/700/500" />

**Edits** `_sass/minima/_base.scss`

Setting CSS of `max-width: 100%;` may be combined with `height: auto;`
which causes image height to shrink if view-port is less than image width.

Note, this may require that image HTML attributes for height
and width be defined, eg...

```html
<img alt-text="Place holder image of a cat"
     width="700"
     height="500"
     src="https://placekitten.com/700/500" />
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants