I did this, what it basically does is hide the scroll, is there another way to do it?
div {
overflow: hidden;
width: 188px;
}
.barra {
height: 80px;
overflow: auto;
width: 208px;
border: 1px solid gray;
}
<div>
<div class="barra">
hola mundo <br/>
hola como estas <br/>
hola america <br/>
<br/>
<br/>
hola america <br/>
<br/>
</div>
</div>