Programming
[css] 스크롤은 되지만 스크롤바 안보이기
mionager
2020. 10. 13. 21:45
.sec2 .deal-wrap::-webkit-scrollbar {
display: none; //firefox
}
.sec2 .deal-wrap {
-ms-overflow-style: none; // IE 10+
scrollbar-width: none; // safari and chrome
}