Answers for "css not last child"

CSS
11

not last child css

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

css last child

li:last-child {
    background-color: lime;
}
Posted by: Guest on May-20-2020
4

css not last child

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

Browse Popular Code Answers by Language