What does the :last-child
selector do?
The :last-child
selector in CSS targets the last element among a group of sibling elements within a parent. It’s a way to style only the last child element. For example, if you want to set a border line on a vertical list of items:
- Bananas
- Berries
- Apples
- Grapes
What does the not:last-child
selector do?
The not:last-child
selector in CSS allows you to style all child elements except the last one within a parent. For instance, if you you want to center a list of elements with a margin between them:
- Bananas
- Berries
- Apples
- Grapes
HTML
<ul class="demo-list demo-list-last-child">
<li>Bananas</li>
<li>Berries</li>
<li>Apples</li>
<li>Grapes</li>
</ul>
<ul class="demo-list demo-list-not-last-child">
<li>Bananas</li>
<li>Berries</li>
<li>Apples</li>
<li>Grapes</li>
</ul>
CSS
.demo-list {
list-style-type: none;
margin: 2rem 0;
padding: 0;
}
.demo-list-last-child li {
background: #F0F0F0;
padding: 2px;
border-top: 1px dotted #C06800;
}
.demo-list-last-child li:hover,
.demo-list-not-last-child li:hover {
background: #CFCECE;
cursor: pointer;
}
.demo-list-last-child li:last-child {
border-bottom: 1px dotted #C06800;
}
.demo-list-not-last-child {
text-align: center;
}
.demo-list-not-last-child li {
display: inline-block;
text-align: center;
border: 1px dotted #C06800;
padding: 1rem;
}
.demo-list-not-last-child li:not(:last-child) {
margin-right: 20px;
}
Arrow at the bottom
Arrow at the bottom with a utf-8 character
Arrow at the top of a container
Aside
Background color
Blackboard design
Breadcrumbs design
Calendar design
Checkboxes as circular buttons
Checkboxes as toggle switches
Cursor properties
Circular image with a shadow effect
Font Awesome pulled icons
Gallery picture frame with a price ribbon
Google pie chart
Google web fonts
Last child and not last child element
Letter spacing
List items with a Font Awesome icon
Neon text
Neon text with a flickering effect
Notebook paper background
Radio buttons as circular buttons
Radio buttons as rating stars
Remove the glow effect from an input field
Search bar with categories
Track (audio/video subtitles)
Web fonts
Whiteboard design