Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

-ms-autohiding-scrollbar all the things #31

Closed
jonathantneal opened this issue Jun 3, 2015 · 2 comments
Closed

-ms-autohiding-scrollbar all the things #31

jonathantneal opened this issue Jun 3, 2015 · 2 comments

Comments

@jonathantneal
Copy link
Collaborator

Check to see if -ms-overflow-style is inherited. If not, set it to inherit. This way, IE (and Edge?) get the nice appearing / disappearing scrollbars on the page and any overflowed element (like a <pre> with code) that we enjoy on Chrome, Firefox, and Safari.

* {
    -ms-overflow-style: inherit;
}

:root {
    -ms-overflow-style: -ms-autohiding-scrollbar;
}
@bcomnes
Copy link
Contributor

bcomnes commented Jun 4, 2015

👍

@jonathantneal
Copy link
Collaborator Author

This is, in fact, inherited!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants