Pavan Kumar
Pavan Kumar

Reputation: 1686

last-child pseudo classes

I am developing tree view structure in html & css.

Please find the code in the below link. In that 'special folder' there is dotted line missed. I am using css :last-child for ul, li.

http://jsfiddle.net/LtzSF/

Can any body please solve this problem.

Upvotes: 1

Views: 83

Answers (1)

Richard M
Richard M

Reputation: 14535

Try selecting only direct descendants: ul#test li:last-child > ul.

http://jsfiddle.net/LtzSF/1/

Upvotes: 4

Related Questions