What does a star-preceded property mean in CSS?

Viewed 27310

I was looking at a css file today and found the following rule set:

div.with-some-class {
    display:block;                   
    margin:0;
    padding:2px 0 0 0;
    *padding:1px 0 0 0;
    font-size:11px;   
    font-weight:normal;
    *line-height:13px;
    color:#3D9AD0;
}

What does the star mean in *padding and *line-height?

Thanks.

4 Answers
Related