mobile-config-firefox/chrome/numbered_tabs.css

4 lines
204 B
CSS
Raw Normal View History

2019-11-04 22:49:17 +01:00
/* Show a number before tab text*/
.tabbrowser-tab:first-child{ counter-reset: nth-tab 0 } /* Change to -1 for 0-indexing */
.tab-text::before{ content: counter(nth-tab) " "; counter-increment: nth-tab }