하위 선택기(>)

550 단어 htmlcss

this element is used to select a specific child element from a specific element.


   ```html
    <div class="abc">
       <section>.....</section>
       <p>.....</p>
       <button>.....</button>
   </div> 
  ```
여기서 'div' 클래스 이름 'abc' 에서 all를 선택하려면 하위 선택기를 사용합니다.
   ```CSS
   .abc > p {
         ........
         ........
     }
    ```

좋은 웹페이지 즐겨찾기