Kode Css Menghilangkan Scroll bar halaman blog
html, body {width: 100vw; height: 100vh;
overflow-y: scroll; /* Scroll tetap ada, tapi tidak terlihat */
scrollbar-width: none; /* Menghilangkan scroll bar di Firefox */}
::-webkit-scrollbar {display: none; /* Menghilangkan scroll bar di Chrome & Safari */}
