css background content code example
Example 1: css last child
li:last-child {
background-color: lime;
}
Example 2: change text in a div css
<button>Hello</button>
button {
background-color: green;
color: black;
padding: 5px;
}
li:last-child {
background-color: lime;
}
<button>Hello</button>
button {
background-color: green;
color: black;
padding: 5px;
}