min-content and max-content are not prefixed
- Dominant language
- JavaScript
- Stars
- 5.3k
- Forks
- 187
- PR merge metrics
- No merged PRs in 30d
Description
I wasn't understanding why my css declaration `max-width:min-content` wasn't working on Safari and I discovered that I had to add prefixes `-webkit-min-content` and `moz-min-content`.
I had to add all prefixes in a single css declaration like this:
`'max-width':'-moz-min-content; max-width:-webkit-min-content; max-width:min-content'`
Contributor guide
No contributing guide indexed for this repository
Research direction
The issue names no source file or test; start by locating Aphrodite's browser-prefixing entry point and the handling of min-content and max-content declarations. Verify that generated CSS includes the required vendor-prefixed fallbacks and add or run coverage for those declarations.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- javascript
- Domain
- frontend
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100