question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

[css-grid]min-content/max-content prefix in Safari

See original GitHub issue

input:

.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?

http://caniuse.com/#feat=css-grid

Issue Analytics

  • State:closed
  • Created 7 years ago
  • Comments:17 (12 by maintainers)

github_iconTop GitHub Comments

1reaction
aicommented, Jan 12, 2018

@jayenashar fixed ecd7eed

1reaction
aicommented, Jan 6, 2018

@jayenashar confirmed. I will try to fix it on next week.

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found