width: max-content doesn't come with webkit and moz prefix
hungtuchen opened this issue · 4 comments
hungtuchen commented
if I use
.foo
width max-content
I only get
.foo {
width: max-content;
}
Not the output as below I expected
.foo {
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
}
Was that intentional?
seleckis commented
Use PostCSS Autoprefixer plugin instead.
seleckis commented
This is not spam. Nib is old and is not developing for a year. New solutions are coming, so there is no need to use nib mixins which generates vendor prefixed. Nib should be updated to reduce mixins which could be duplicated by autoprefixer. Instead other useful mixins needed.
acauamontiel commented
I created a plugin called Mantis Toolkit a few years ago in line with the new CSS solutions available.
So using the Mantis Toolkit in conjunction with PostCSS does everything the NIB did and even better.