Answers for "not the last child in css"

CSS
13

not last child css

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

selecting last child css

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

Browse Popular Code Answers by Language