요소 ~ 요소 선택기를 사용하여 e388a4556c0f65e1904146cc1a846bee 요소 앞에 있는 ff6d136ddc5fdfeffaf53ff6ee95f185 요소를 선택하세요. 이 예제를 구현하려면 다음 코드를 실행해 보세요.
Live Demo
<!DOCTYPE html> <html> <head> <style> p~ul { color: white; background-color: blue; } </style> </head> <body> <h1>Demo Website</h1> <h2>Fruits</h2> <div> <p>Vegetables are good for health.</p> <ul> <li>Spinach</li> <li>Onion</li> <li>Capsicum</li> </ul> </div> <p>Fruits are good for health.</p> <ul> <li>Apple</li> <li>Orange</li> <li>Kiwi</li> </ul> </body> </html>
위 내용은 CSS 요소 앞에 있는 모든 요소를 선택합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!