<!DOCTYPE html>
<html>
<head>
<title>CSS :nth-of-type(n) Selector</title>
<style>
div :nth-of-type(2) {
color: #FF0000;
}
</style>
</head>
<body>
<div>
<span>This is first span</span>
<span>This is second span</span>
<span>This is third span</span>
<ul>
<li>first item</li>
<li>second item</li>
<li>third item</li>
</ul>
</div>
</body>
</html>