Skip to content

Commit

Permalink
Added: Descriptive comments on fieldset bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
jehna committed Apr 10, 2015
1 parent 59a76e3 commit c8c9084
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion scss/_responsive.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,15 @@
}

fieldset {
// The following line fixes fieldset overflow in webkit browsers.
// For further info see:
// http://stackoverflow.com/questions/17408815/fieldset-resizes-wrong-appears-to-have-unremovable-min-width-min-content/17863685#17863685
min-width: 0;
}

// Firefox bug fix
// The following lines fixes fieldset overflow bug in Firefox browser.
// For further info, see:
// http://stackoverflow.com/questions/17408815/fieldset-resizes-wrong-appears-to-have-unremovable-min-width-min-content/17863685#17863685
@-moz-document url-prefix() {
fieldset {
display: table-cell;
Expand Down

0 comments on commit c8c9084

Please sign in to comment.