<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Соседние селекторы</title>
<link rel="stylesheet" href="/assets/course7/course-1.css">
</head>
<body>
<ul class="target">
<li class="first">1</li>
<li>2</li>
<li>3</li>
<li class="fourth">4</li>
<li>5</li>
</ul>
</body>
</html>
li {
background-color: white;
}
.first, .first + .fourth {
background-color: red;
}