We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When the element to scroll contains an input element the user cannot scroll the container if they touch over the input element. For example:
<div class="container" style="width: 500px; overflow: hidden;"> <p>Hello World</p> <div style="width: 1100px"> <input type="text" id="firstName" style="width: 200px; display: inline-block;" /> <input type="text" id="firstName" style="width: 200px; display: inline-block;" /> <input type="text" id="firstName" style="width: 200px; display: inline-block;" /> <input type="text" id="firstName" style="width: 200px; display: inline-block;" /> <input type="text" id="firstName" style="width: 200px; display: inline-block;" /> </div> </div>
In this case the user can scroll when they press over the paragraph but not when they press over the input.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When the element to scroll contains an input element the user cannot scroll the container if they touch over the input element. For example:
In this case the user can scroll when they press over the paragraph but not when they press over the input.
The text was updated successfully, but these errors were encountered: