Answers for "first and last child except css"

CSS
0

not the first child and not the last child css

#navigation ul li:not(:first-child):not(:last-child) {
  ...
}
Posted by: Guest on June-15-2021
4

css selector every child except last

:not(:last-child)
Posted by: Guest on September-04-2020

Browse Popular Code Answers by Language