
The scroll bar can be seen in the side-panel when you click on a tweet and the conversation linked to the tweet is long enough.
How is the scroll bar created and styled?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
They’re using
::-webkit-scrollbarand the associated pseudo-elements, which only work in WebKit browsers (which is fine, because this is just aesthetics).Take a look at this for more information: Apple-like scrollbars using CSS
I’ve taken the CSS that Twitter is using, see: http://jsbin.com/ubasew
The
#docis as Twitter had it, and it’s there so that only scrollbars inside#docare customised.