As someone new to web development, I am facing an issue with my code where the CSS id selector is not functioning as expected:
li {
border: 3px solid red;
}
h3 {
background: green;
}
#special {
color: green;
}
<h3>Todo List</h3>
<ul>
<li> <input type="checkbox" name="walkRusty"> Walk Rusty</li>
<li> <input type="checkbox" name="buyGroceries">Buy Groceries</li>
<li> <input type="checkbox" name="cssVideos" id="special">Finish CSS Videos</li>
</ul>