The problem is scrollbar
always shows up when I move my mouse inside body after I link bootstrap
style.
At the beginning, the scrollbar
is hidden. It is working fine. But when I hover the mouse in the body
area and toggle the mouse wheel, the scrollbar
shows up. I have set the overflow
to hidden. But the issue still here.
The code snippet is below:
<!DOCTYPE html>
<html>
<head>
<link href="~/Content/bootstrap.min.css" rel="stylesheet" />
<style>
html, body {
overflow: hidden;
}
</style>
</head>
<body>
</body>
</html>