mardi 3 septembre 2019

Disable scroll bar for all elements excluding tables

I would disable all the progress bars in my web application but I want use it on the table.

I used ::-webkit-scrollbar but this disable the scroll bars for all the elements. I need to exclude the tables and than personalize it.

::-webkit-scrollbar {
    display: none;
    scrollbar-width: block;
    overflow: block;
}

I tried to use :not(table) but this exclude also other elements.

::-webkit-scrollbar:not(table){
    display: none;
    scrollbar-width: block;
    overflow: block;
}

Any solution? I would also customize the scroll bar for the tables, how can I do this?




Aucun commentaire:

Enregistrer un commentaire