[css-grid]min-content/max-content prefix in Safari
See original GitHub issueinput:
.foo {
grid-template-columns: minmax(100px, min-content);
}
output:
.foo {
-ms-grid-columns: minmax(100px, min-content);
grid-template-columns: minmax(100px, min-content);
}
These properties just remove the prefix in https://trac.webkit.org/changeset/213831 , but I’m not sure which version of Safari.
@mrego Can you help me?
Issue Analytics
- State:
- Created 7 years ago
- Comments:17 (12 by maintainers)
Top Results From Across the Web
grid-template-rows with max-content on safari not working as ...
Is there a way to have Safari "choose" the correct property that includes the -webkit prefix for max-content or should I use max-content...
Read more >min-content - CSS: Cascading Style Sheets - MDN Web Docs
The min-content sizing keyword represents the intrinsic minimum width of the content. For text content this means that the content will take ...
Read more >Understanding min-content, max-content, and fit-content in CSS
Learn about the fit-content, min-content, and max-content.In keyword values in CSS and how to use them in real-world projects.
Read more >"max-content" | Can I use... Support tables for HTML5, CSS3, etc
Older webkit browsers also support the unofficial intrinsic value which acts the same as max-content . 1 Firefox does not support the height...
Read more >Browser Compatibility of CSS min/max-width/height on Safari 14
CSS min/max-width/height is Fully Supported on Safari 14, which means that any user who'd be accessing your page through Safari 14 can see ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@jayenashar fixed ecd7eed
@jayenashar confirmed. I will try to fix it on next week.