Re: [csswg-drafts] [css-sizing] max-width: 100% while also using width: min-content on container

You can try something like https://jsfiddle.net/sm4tecns/
```css
.container {
  width: max-content;
}
.container, img {
  max-width: 100%;
}
p {
  width: 0;
  min-width: 100%;
}
```


-- 
GitHub Notification of comment by Loirooriol
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/1927#issuecomment-341469206 using your GitHub account

Received on Thursday, 2 November 2017 15:59:11 UTC