css hidden scrollbars
Creating a scrolling area with the scrollbars hidden is quite easy using an extra container around your scrollbar
<b>html</b>
<div class="parent">
<div class="child">
content...
</div>
<div>
<b>css</b>
.parent{
height: 300px;
border: 2px solid red;
width: 300px;
overflow: hidden;
}
.child{
background-color: #4679bd;
color: white;
width: 100%;
overflow: auto;
height: 100%;
padding-right: 18px;
}
Written by Steven Iseki
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Css
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#