Post

Replies

Boosts

Views

Activity

iOS 14 and browser scroll bars (webkit)
Hello! I have this scrollable container. It works fine across browsers and devices until it hits iOS14. Behaves just the way it should iOS 12 - (cant test iOS13 right now) The goal is to always show the scrollbar. On iOS14 only the native scrollbar is shown when scrolling is happening. Is there any way to fix this for iOS14 users? thanks in advance! div {	 max-height: 20rem; 	overflow-x: hidden; 	overflow-y: auto; 	margin-right: 0.25rem; 	::-webkit-scrollbar-track { 		border-radius: 0.125rem; 		background-color: lightgray; 	} 	::-webkit-scrollbar { 		width: 0.25rem; 		border-radius: 0.125rem; 	} 	::-webkit-scrollbar-thumb { 		border-radius: 0.125rem; 		background-color: gray;}; 	} }
6
1
17k
Dec ’20