What's the deal with CSS and scroll bars?

后端 未结 4 1805
梦谈多话
梦谈多话 2021-01-03 01:25

I\'ve got a client with an HTML page with a couple of scrolling divs with text content. She\'s using a heavily image-based design so the default scroll bars don\'t suit it a

4条回答
  •  生来不讨喜
    2021-01-03 01:33

    Its kind of possible.

    body {
        scrollbar-face-color: #ffffff;
        scrollbar-highlight-color: #000000;
        scrollbar-shadow-color: #ffffff;
        scrollbar-3dlight-color: #ffffff;
        scrollbar-arrow-color: #000000;
        scrollbar-track-color: #808080;
        scrollbar-darkshadow-color: #000000;
    }
    

    Note:: It may not work if you have specified an XHTML Doctype!!

提交回复
热议问题