Xul listbox without scrollbar, is this possible?

When the Xul list has more yen than it can show, the document says: “A scroll bar will appear that the user can use to display additional lines.”

Is there a way to disable the scroll bar so that it never appears?

+3
source share
1 answer

This is a hack and does not guarantee work in future versions, but you can put this in the stylesheet:

#yourlistbox-id listboxbody {
  overflow-y: hidden;
}

<listboxbody> , <listitem> ( DOM inspector), , , ( DOMi).

+4

Source: https://habr.com/ru/post/1780481/


All Articles