:nth-last-child(n)
selects elements that are the nth from last child.
The argument is the index of the element.
The indexes start at 1.
:nth-last-child(n) { style properties }
:nth-last-child(n) |
Yes | 9.0 | Yes | Yes | Yes |
An example showing how to use :nth-last-child(n) CSS selector.
<!DOCTYPE HTML>
<html>
<head>
<title>Example</title>
<style type="text/css">
body > :nth-last-child(2) { <!--from w ww. j a va 2 s .c o m-->
border: thin black solid;
padding: 4px;
}
</style>
</head>
<body>
<a href="http://java2s.com">Visit the java2s.com</a>
<p>I like <span>HTML</span> and CSS.</p>
<a href="http://java2s.com">Visit the java2s.com</a>
<a href="http://java2s.com">Visit the java2s.com</a>
<p>I like <span>HTML</span> and CSS.</p>
<a href="http://java2s.com">Visit the java2s.com</a>
<a href="http://java2s.com">Visit the java2s.com</a>
<p>I like <span>HTML</span> and CSS.</p>
<a href="http://java2s.com">Visit the java2s.com</a>
</body>
</html>