Home  >  Article  >  Web Front-end  >  Novice help how to customize the color and shape of scrollbar_html/css_WEB-ITnose

Novice help how to customize the color and shape of scrollbar_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 12:26:291093browse

scrollbar website

I want to replace the following with a custom scrollbar.
The scrollbar background is changed to transparent, and the scrollbar button is black. Is there any way? Thank you very much! !


}
.board-game .scroll_pane {
overflow-x: scroll; overflow-y: hidden;
margin: 0 0 0 11px;
height: 271px;
width: 662px;
}

Reply to discussion (solution)

http://www.wufangbo.com/scroll-bars-css- style/

.boxno{	overflow-x: scroll; overflow-y: hidden;        margin: 0 0 0 11px;height: 271px;width: 662px;	scrollbar-face-color: #f5eded; /*   滚动条颜色*/	scrollbar-highlight-color: #666; /*  //滚动条侧线颜色(左)*/	scrollbar-3dlight-color: #999; /* //滚动条最边线颜色(左)*/	scrollbar-darkshadow-color: #D6E7EF; /* //滚动条侧线颜色(右)*/	scrollbar-Shadow-color: #333; /*//滚动条侧线拐角阴影颜色(右)*/	scrollbar-arrow-color: #000; /* //上下三角形颜色*/	scrollbar-track-color: #f5eded; /*  //滚动条底部背景色*/}

Reference

Thank you very much. =v= Because I have never learned css and html but I want to help the company modify a website. Thank you for your reference. The problem has been solved.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn