요소+요소 사용 그 첫 번째 지정된 요소 뒤에 배치된 요소를 선택하는 선택자. 이를 구현하기 위해 다음 코드를 실행할 수 있습니다.
예시
<!DOCTYPE html>
<html>
<head>
<style>
div + p {
color: white;
background-color: blue;
}
</style>
</head>
<body>
<h1>Demo Website</h1>
<h2>Fruits</h2>
<div>
<p>This is demo text.</p>
</div>
<p>Fruits are good for health.</p>
<p>Fruits makes you healthy.</p>
</body>
</html>