If my textbox happens to be focused and you use the scroll within it, the page scroll gets bugged. In other words, it looks like I am scrolling within my textbox rather than the page, which causes me to have to reload the page if I want to remove the bug. 
The only work around I have is once the textbox is focused and I want to scroll the page I have to click the body of the page to unfocus. Not every user will know this issue and could cause the page scroll to the bug. Is there a way to prevent scroll on the textbox? Not sure what this feature is called.
FYI: tried something like this bug scroll still happens
textbox {
    position: fixed;
    white-space: nowrap;
    overflow: hidden;
}
JsFiddle https://jsfiddle.net/nmbga0nu/3/
it does not run the code in this snippet but it shows my CSS. I am using asp.net textbox/label but that shouldn't affect why the scroll happens. has to be something with CSS or bootstrap.