Forum Moderators: not2easy
cEM
to explain a little further, only because I didnt know what this all meant when I started using CSS
what D_Blackwell is applying here is margin to the top and bottom of the <li> tag and is using a short hand set of values for this.
The value written in full is:
li {
margin: 1.3em 0 1.3em 0;
}
so there are 4 values for margin, these are TOP RIGHT BOTTOM LEFT respectively.
If you start usng CSS allot you will find this VERY useful to know
You can use different kinds of values to define the spacing as another example it could be written as:
li {
margin: 13px 0 13px 0;
}
However ems are a good choice because the spacing between your <li> elements will scale in proportion, should a visitor to your website want to increase the font size
ZA
PS this is meant to expand the explanation just a little more hopefully to help