Answers for "css everything but last child"

CSS
13

not last child css

p:not(:last-child) { 
	margin-bottom: 20px
}
Posted by: Guest on June-15-2020
0

css last 3 childs

#something a:nth-last-child(-n+3) {
    /*declarations*/
}
Posted by: Guest on October-13-2020
5

selecting last child css

p:last-child {
  font-size: 0.75em;
}
Posted by: Guest on January-31-2020

Code answers related to "css everything but last child"

Browse Popular Code Answers by Language