V
V
Vladimir2018-02-12 04:13:17
css
Vladimir, 2018-02-12 04:13:17

How to remove scrollbar in Mozilla Firefox?

In Chrome, I installed the Rescroller extension and injected CSS:

::-webkit-scrollbar
{
width: 0px;
height: 0px;
}

How can this be done in the new version of Firefox?

Answer the question

In order to leave comments, you need to log in

3 answer(s)
L
Lumore, 2018-02-12
@Lumore

::-moz-scrollbar
{
width: 0px;
height: 0px;
}

?

L
lojcin, 2018-02-22
@lojcin

Install Stylish: Stylish: and style in it

P
partyzanx, 2019-04-01
@partyzanx

This library helped me dragon.deparadox.com/#get
You need to install and connect two scripts Drag On and Bar on

<script src='/scripts/drag-on.js'></script> <!-- Позволяет пролистывать документ методом drag and drop (перетаскиванием) http://dragon.deparadox.com/#get . В класс нужно добавить dragon  -->
<script src='/scripts/bar-on.js'></script> <!-- Позволяет изменять стиль скруллбара даже в firefox http://dragon.deparadox.com/#get . В класс нужно добавить baron. В css прописать стандартные стили  -->

After that, somehow firefox starts listening to the scrollbar settings set via css
.forscroll {
scrollbar-color: white white; /* In firefox, make a scrollbar to match the background color. This must be set so that the scrollbar does not flicker until the bar on script is loaded */
}
.forscroll::-webkit-scrollbar {width: 0;}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question