Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS를 사용하여
요소 바로 뒤에 배치되는 모든

요소를 선택합니다.


요소+요소 사용 첫 번째 지정된 요소 뒤에 배치된 요소를 선택하는 선택자. 이를 구현하기 위해 다음 코드를 실행할 수 있습니다.

예시

<!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>