简体   繁体   中英

Xul listbox without the scrollbar, is it possible?

When a Xul's listbox have more itens than it can show, the doc says "A scroll bar will appear that the user can use to display the additional rows" .

Is there a way of disable the scroll bar so that it will never appear?

It's a hack and is not guaranteed to work in future versions, but you could put this in your stylesheet:

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

<listboxbody> is an anonymous element hosting the <listitem> elements of the listbox (you can see it with the DOM inspector ), and it's this element, not the listbox itself has the scrollbars via the overflow property (also can be observed in the DOMi).

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM