Is it bad practice to comment out single lines of CSS with //?

I don’t know how future and/or exotic browsers will interpret non-official hacks like //, so I’d rather stick with the appropriate notation:

li {
    float:left;
    text-indent:0px;
    /* list-style-type:none; */
}

Leave a Comment