Commit 37acbb98 authored by Chris Rebert's avatar Chris Rebert
Browse files

min-content is standard, so no need to vendor prefix it

Also, makes little sense to say that Firefox sets a `-webkit`-prefixed value
parent 2b302f69
Showing with 1 addition and 1 deletion
+1 -1
...@@ -11,7 +11,7 @@ fieldset { ...@@ -11,7 +11,7 @@ fieldset {
padding: 0; padding: 0;
margin: 0; margin: 0;
border: 0; border: 0;
// Chrome and Firefox set a `min-width: -webkit-min-content;` on fieldsets, // Chrome and Firefox set a `min-width: min-content;` on fieldsets,
// so we reset that to ensure it behaves more like a standard block element. // so we reset that to ensure it behaves more like a standard block element.
// See https://github.com/twbs/bootstrap/issues/12359. // See https://github.com/twbs/bootstrap/issues/12359.
min-width: 0; min-width: 0;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment