I am very new to css. I was looking at a css file I found online and trying to figure out what everything does. I am confused with the following couple of things. Please let me know if anything I say is wrong!
This on sets up some properties of a list item in a <div id="sidebar"> environment
#sidebar li {
margin-bottom: 10px;
background: url(images/img10.gif) no-repeat left bottom;
}
Now these two thing I was confused about:
#sidebar li ul {
padding: 0 30px 40px 30px;
}
#sidebar li li {
margin: 0;
padding-left: 30px;
background: url(images/img12.gif) no-repeat 5px 50%;
}
What is a li ul? and an li li?
Thanks!
Dave