List Items–Vertical Spacing
The margin-bottom attr accomplishes this.
margin-bottom: 8px;
Since you don’t need the spacing on the last list item,
li:not(:last-child) {
margin-bottom: 5px;
}
Production Grade Technical Solutions | Data Encryption and Public Cloud Expert
The margin-bottom attr accomplishes this.
margin-bottom: 8px;
Since you don’t need the spacing on the last list item,
li:not(:last-child) {
margin-bottom: 5px;
}
Leave a Reply