Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3681310
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T03:40:33+00:00 2026-05-19T03:40:33+00:00

I have noticed on some Apple sites like: http://help.apple.com/mobileme/index.html#mm5b08c671 they have custom scrollbars using

  • 0

I have noticed on some Apple sites like: http://help.apple.com/mobileme/index.html#mm5b08c671 they have custom scrollbars using the WebKit scrollbar CSS stuff that recently came out. However I am unable to replicate it at all. Any ideas how to do it? I have a test site here but I get the default scrollbars? Thanks

Test: http://driz.co.uk/scrollbar/

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T03:40:33+00:00Added an answer on May 19, 2026 at 3:40 am

    The following CSS monster is what Apple is using:

    http://jsfiddle.net/thirtydot/kTsUc/886/

    ::-webkit-scrollbar {
        width: 15px;
        height: 15px;
    }
    ::-webkit-scrollbar-corner {
        background-image: url(https://i.stack.imgur.com/FguQn.png?corner.png);
        background-repeat: no-repeat;
    }
    ::-webkit-resizer {
        background-image: url(https://i.stack.imgur.com/aKKDY.png?resizer.png);
        background-repeat: no-repeat;
        background-position: bottom right;
    }
    ::-webkit-scrollbar-button:start {
        display: none;
    }
    ::-webkit-scrollbar-button:end {
        display: block;
    }
    ::-webkit-scrollbar:horizontal {
        -webkit-border-image: url(https://i.stack.imgur.com/NQ2K6.png?horizontal-button.png) 0 2 0 2;
        border-color: transparent;
        border-width: 0 2px;
        background-image: url(https://i.stack.imgur.com/8xDbU.png?horizontal-button-background.png);
        background-repeat: repeat-x;
    }
    ::-webkit-scrollbar:horizontal:corner-present {
        border-right-width: 0;
    }
    ::-webkit-scrollbar-thumb:horizontal {
        -webkit-border-image: url(https://i.stack.imgur.com/YQRD7.png?horizontal-thumb.png) 0 15 0 15;
        border-color: transparent;
        border-width: 0 15px;
        min-width: 20px;
    }
    ::-webkit-scrollbar-track-piece:horizontal:start {
        margin-left: 6px;
    }
    ::-webkit-scrollbar-track-piece:horizontal:end {
        margin-right: -6px;
    }
    ::-webkit-scrollbar-track-piece:horizontal:decrement {
        -webkit-border-image: url(https://i.stack.imgur.com/p9yMk.png?horizontal-track.png) 0 15 0 15;
        border-color: transparent;
        border-width: 0 0 0 15px;
    }
    ::-webkit-scrollbar-track-piece:horizontal:increment {
        -webkit-border-image: url(https://i.stack.imgur.com/p9yMk.png?horizontal-track.png) 0 15 0 15;
        border-color: transparent;
        border-width: 0 15px 0 0;
    }
    ::-webkit-scrollbar-button:horizontal {
        width: 21px;
        -webkit-border-image: url(https://i.stack.imgur.com/NQ2K6.png?horizontal-button.png) 0 2 0 2;
        border-color: transparent;
        border-width: 0 2px;
    }
    ::-webkit-scrollbar-button:horizontal:decrement {
        background-image: url(https://i.stack.imgur.com/dGOKL.png?horizontal-decrement-arrow.png), url(https://i.stack.imgur.com/8xDbU.png?horizontal-button-background.png);
        background-repeat: no-repeat, repeat-x;
        background-position: 7px 4px, 0 0;
    }
    ::-webkit-scrollbar-button:horizontal:decrement:active {
        -webkit-border-image: url(https://i.stack.imgur.com/gT5BM.png?horizontal-button-active.png) 0 2 0 2;
        background-image: url(https://i.stack.imgur.com/dGOKL.png?horizontal-decrement-arrow.png), url(https://i.stack.imgur.com/RDf8L.png?horizontal-button-background-active.png);
    }
    ::-webkit-scrollbar-button:horizontal:increment {
        background-image: url(https://i.stack.imgur.com/5rJr5.png?horizontal-increment-arrow.png), url(https://i.stack.imgur.com/8xDbU.png?horizontal-button-background.png);
        background-repeat: no-repeat, repeat-x;
        width: 16px;
        border-left-width: 0;
        background-position: 3px 4px, 0 0;
    }
    ::-webkit-scrollbar-button:horizontal:increment:active {
        -webkit-border-image: url(https://i.stack.imgur.com/gT5BM.png?horizontal-button-active.png) 0 2 0 2;
        background-image: url(https://i.stack.imgur.com/5rJr5.png?horizontal-increment-arrow.png), url(https://i.stack.imgur.com/RDf8L.png?horizontal-button-background-active.png);
    }
    ::-webkit-scrollbar-button:horizontal:end:increment:corner-present {
        border-right-width: 0;
        width: 15px;
    }
    ::-webkit-scrollbar:vertical {
        -webkit-border-image: url(https://i.stack.imgur.com/NdaTT.png?vertical-button.png) 2 0 2 0;
        border-color: transparent;
        border-width: 2px 0;
        background-image: url(https://i.stack.imgur.com/p7j9a.png?vertical-button-background.png);
        background-repeat: repeat-y;
    }
    ::-webkit-scrollbar:vertical:corner-present {
        border-bottom-width: 0;
    }
    ::-webkit-scrollbar-thumb:vertical {
        -webkit-border-image: url(https://i.stack.imgur.com/rPEsZ.png?vertical-thumb.png) 15 0 15 0;
        border-color: transparent;
        border-width: 15px 0;
        min-height: 20px;
    }
    ::-webkit-scrollbar-track-piece:vertical:start {
        margin-top: 6px;
    }
    ::-webkit-scrollbar-track-piece:vertical:end {
        margin-bottom: -6px;
    }
    ::-webkit-scrollbar-track-piece:vertical:decrement {
        -webkit-border-image: url(https://i.stack.imgur.com/Rb6ru.png?vertical-track.png) 15 0 15 0;
        border-color: transparent;
        border-width: 15px 0 0 0;
    }
    ::-webkit-scrollbar-track-piece:vertical:increment {
        -webkit-border-image: url(https://i.stack.imgur.com/Rb6ru.png?vertical-track.png) 15 0 15 0;
        border-color: transparent;
        border-width: 0 0 15px 0;
    }
    ::-webkit-scrollbar-button:vertical {
        height: 21px;
        -webkit-border-image: url(https://i.stack.imgur.com/NdaTT.png?vertical-button.png) 2 0 2 0;
        border-color: transparent;
        border-width: 2px 0;
    }
    ::-webkit-scrollbar-button:vertical:decrement {
        background-image: url(https://i.stack.imgur.com/KQvwk.png?vertical-decrement-arrow.png), url(https://i.stack.imgur.com/p7j9a.png?vertical-button-background.png);
        background-repeat: no-repeat, repeat-y;
        background-position: 4px 7px, 0 0;
    }
    ::-webkit-scrollbar-button:vertical:decrement:active {
        -webkit-border-image: url(https://i.stack.imgur.com/uW3TL.png?vertical-button-active.png) 2 0 2 0;
        background-image: url(https://i.stack.imgur.com/KQvwk.png?vertical-decrement-arrow.png), url(https://i.stack.imgur.com/puDsH.png?vertical-button-background-active.png);
    }
    ::-webkit-scrollbar-button:vertical:increment {
        background-image: url(https://i.stack.imgur.com/UjkVR.png?vertical-increment-arrow.png), url(https://i.stack.imgur.com/p7j9a.png?vertical-button-background.png);
        background-repeat: no-repeat, repeat-y;
        height: 16px;
        border-top-width: 0;
        background-position: 4px 5px, 0 0;
    }
    ::-webkit-scrollbar-button:vertical:increment:active {
        -webkit-border-image: url(https://i.stack.imgur.com/uW3TL.png?vertical-button-active.png) 2 0 2 0;
        background-image: url(https://i.stack.imgur.com/UjkVR.png?vertical-increment-arrow.png), url(https://i.stack.imgur.com/puDsH.png?vertical-button-background-active.png);
    }
    ::-webkit-scrollbar-button:vertical:end:increment:corner-present {
        border-bottom-width: 0;
        height: 15px;
    }
    ::-webkit-scrollbar:disabled {
        background: red;
        -webkit-border-image: none;
        display: none;
    }
    

    Some useful blog posts:

    • http://webkit.org/blog/363/styling-scrollbars/
    • http://web.archive.org/web/20120115134443/http://numerosign.com/notebook/styling-webkit-scrollbars-with-css3/
    • http://almaer.com/blog/creating-custom-scrollbars-with-css-how-css-isnt-great-for-every-task
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have noticed that some apps like Safari and Mail show a loading indicator
I'm trying to fetch some HTML from various blogs and have noticed that different
In VisualStudio (Pro 2008), I have just noticed some inconsistent behaviour and wondered if
I have noticed jQuery (or is it Firefox) will turn some of my <span
I'm sure some of you noticed that if you have Acrobat Reader ( or
I often inspect sites using firebug and have noticed quite a range of complexity
During performing some performance tuning in my application I have noticed, that hibernate query
I have noticed that cURL in PHP returns different data when told to output
I have noticed that regardless of a given script's execution time, every date() call
I have noticed that my particular instance of Trac is not running quickly and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.