Here is a snippet of CSS that I need explained:
#section {
width: 860px;
background: url(/blah.png);
position: absolute;
top: 0;
left: 50%;
margin-left: -445px;
}
Ok so its absolute positioning of an image obviously.
- top is like padding from the top, right?
- what does left 50% do?
- why is the left margin at -445px?
Update: width is 860px. The actual image is 100x100 if that makes a difference??