<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
div {
width: 50px;
height: 50px;
}
div:nth-child(odd) {
background-color: red;
}
div:nth-child(even) {
background-color: blue;
}
</style>
</head>
<body>
<div>...</div>
<div>...</div>
<div>...</div>
<div>...</div>
<div>...</div>
<div>...</div>
</body>
</html>