li {
margin: 10px;
padding: 10px;
}
will set those respective properties to 10px each. right now they are set to 0px, and for every element in the document, which is probably not what you want
4
solved How do I set my ul’s margin after setting every padding and margin to zero in CSS? [closed]