From Uncyclopedia, the content-free encyclopedia
Jump to navigation
Jump to search
/*
#mf-itn li:nth-child(n+11) will show 10 items, as items 11 and after will be hidden.
To change number of items shown to say, 5, add 1 to the number desired
*/
#mf-itn li {
display: list-item
}
#mf-itn li:nth-child(n+11) {
display: none;
}
/* [[Category:UnProjects stylesheets]] */