Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Horizontal Scrollbar missing

I want horizontal scrollbar to be displayed. I have used overflow-x:scroll; but I don't see any horizontal scroll bar. Please help.

<div class="abc">
  <p>This is overflow-x scroll. This is overflow-x scroll. This is overflow-x scroll.</p>
</div>
.abc{
  overflow-x:scroll;
  width:1000px;
}

My code here is here

like image 697
sunjeep Avatar asked May 16 '26 01:05

sunjeep


1 Answers

According to the your code in jsbin, try this :

.abc{
  overflow-x: auto;
  white-space: nowrap;
}

You can keep one of the these as required 'auto' or 'scroll'.
There are many other Property Values, check here : http://www.w3schools.com/cssref/pr_pos_overflow.asp

like image 176
Shaggy Avatar answered May 19 '26 03:05

Shaggy



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!