suppose i have a ul li structure and i want to remove last li border which also support in IE 6 by using only CSS(use of css only is compulsory in my project).
<ul>
<li>HI</li>
<li>HI</li>
<li>HI</li>
<li>HI</li>
</ul>'
I want a such type of output which also work in IE6…

After a long study i got a result that there is not a single method in CSS that removes last li border which also work in IE6……so U have to add a class on the last li element or you use jquery to remove last li border…….
Result:- only using CSS u can’t achieve this goal……….