Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So currently I have:

#div
{
position: relative;
height: 510px;
overflow-y: scroll;
}

However I don't believe that it will be obvious to some users that there is more content there. They could scroll down the page without knowing that my div actually contains a lot more content. I use the height 510px so that it cuts off some text so on some pages it does look like that there is more content, but this doesn't work for all of them.

I am using a Mac, and in Chrome and Safari the vertical scroll bar will only show when the mouse is over the Div and you actively scroll. Is there a way to always have it displaying?

Thanks!

share|improve this question
Are you running Lion? – Blender Sep 20 '11 at 21:37
3  
Uhm, can you recreate this exact behaviour on jsfiddle? The css you provided should force a scrollbar to be present all the time. – sg3s Sep 20 '11 at 21:38
1  
Yeah, sounds like you have some other CSS quirks going on to cause that, this should display the scrollbar always. Make sure the div's wrapping this one are styled properly. – Shawn Steward Sep 20 '11 at 21:42
I am running Lion! Maybe that's it? I'll open a virtual machine and see what it's like on the windows side of things... – Jambo Sep 20 '11 at 21:54
Damn, my bad! It is a feature in Lion. I should really read what I'm buying before I buy it... Thanks guys! – Jambo Sep 20 '11 at 22:01

1 Answer

up vote 7 down vote accepted

Just ran into this problem myself. OSx Lion hides scrollbars while not in use to make it seem more "slick", but at the same time the issue you addressed comes up: people sometimes cannot see whether a div has a scroll feature or not.

The fix: In your css include -

::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}
::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0,0,0,.5);
    -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}

customize the apperance as needed. Source

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.