I have this code :

<li class="eight"  ><a href="#" >music</a></li>

but i want that have the same code without any word inside (empty) my mean is remove music word but still have the same width of li tag,is it possible?,or better say that how can i put space character in li tag? thanks

link|improve this question

75% accept rate
you can append spaces &nbsp; &nbsp; &nbsp; – Chendur Pandian Dec 14 '09 at 8:59
Pandiya Chendur,Thanks, your solution is ok also. – Kaveh Dec 14 '09 at 9:14
feedback

1 Answer

up vote 1 down vote accepted
.eight a {
    display: block;
    text-indent:-9999px;
    width:100px;
}

you can change the offset of your text with text-indent

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.