250x250
Notice
Recent Posts
Recent Comments
«   2025/04   »
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30
Tags
more
Archives
Today
Total
관리 메뉴

진스

안드로이드 웹뷰 스크롤바 안보일 때 (Android Webview scrollbar) 본문

Css

안드로이드 웹뷰 스크롤바 안보일 때 (Android Webview scrollbar)

입방정 2023. 9. 15. 14:01
728x90

 웹뷰 방식으로 작업하고 app에서 확인, 카톡브라우저에서도 동일하게  스크롤은 되지만 스크롤바가 나타나지 않음

 

::-webkit-scrollbar {
    width: 5px;
}     
::-webkit-scrollbar-track {
   // -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
  //  -webkit-border-radius: 10px;
  //  border-radius: 10px;
}     
::-webkit-scrollbar-thumb {
  //  -webkit-border-radius: 10px;
 //   border-radius: 10px;
    background: #ccc; 
   // -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}
::-webkit-scrollbar-thumb:window-inactive {
    background: #ccc; 
}
728x90