Skip to content

Instantly share code, notes, and snippets.

@matheusmurta
Last active October 9, 2019 18:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matheusmurta/d9da4fec80064c222bc15809371e0824 to your computer and use it in GitHub Desktop.
Save matheusmurta/d9da4fec80064c222bc15809371e0824 to your computer and use it in GitHub Desktop.
Css hide First itens from ul li list
/*:nth-child(-n+4)*/
.dashboard-widget.big-counter ul.list-inline li:nth-child(2), /this element's 2nd child/
.dashboard-widget.big-counter ul.list-inline li:nth-child(3), /this element's 3rd child/
.dashboard-widget.big-counter ul.list-inline li:nth-child(4) { /this element's 4th child/
display: none !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment