I have a question regarding my code:
http://jsfiddle.net/spadez/rAQYL/1/
Within my code, I am attempting to accomplish three tasks but I seem to be encountering some difficulty.
- Eliminate padding below "admin" (where you see the green background)
- Get rid of padding above the list (where you see the green background)
- Add a 1px space on the left side of each list item (to reveal the green background).
Despite applying the following code, I am unsure of where the extra space is originating from:
* {
padding: 0px;
margin: 0px;
border: 0px;
}
In an attempt to create the 1px space between each list item, I implemented the code below, however it does not appear to be functioning as expected:
#header ul li {
padding-left: 1px;
}
Could someone kindly point out where I may be making an error? Thank you!