This isn't giving any difference in the code when I change none to thin or auto please can someone explain why? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

This isn't giving any difference in the code when I change none to thin or auto please can someone explain why?

.mytext { width: 200px; height: 200px; overflow-y: auto; /*for Firefox*/ scrollbar-width: none; /*change none to thin to check what happens*/ /*for IE and Edge*/ -ms-overflow-style: none; } .mytext::-webkit-scrollbar { display: none; }

12th Oct 2020, 3:28 PM
Abraham Samuel
Abraham Samuel - avatar
1 Answer
0
.mytext::-webkit-scrollbar { display: none; } On this line you are removing the scrollbar which makes so that the line above will get over writen by "display:none"
12th Oct 2020, 9:05 PM
Vanessa Nilsson