Answers for "how to remove the last child in css"

CSS
12

not last child css

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

selecting last child css

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

Code answers related to "how to remove the last child in css"

Browse Popular Code Answers by Language