속성이 있는 요소를 선택하려면 CSS [속성] 선택기를 사용하세요.
예를 들어 Alt 속성이나 대상 속성 등
다음 코드를 실행하여 CSS[속성] 선택기를 구현할 수 있습니다.
라이브 데모
<!DOCTYPE html> <html> <head> <style> img[alt] { border: 3px solid orange; } </style> </head> <body> <img src = "https://www.tutorialspoint.com/videotutorials/images/tutor_connect_home.jpg" height = "200" width = "200"> <img src = "https://www.tutorialspoint.com/videotutorials/images/tutorial_library_home.jpg" height = "200" width = "200" alt = "Tutorials Library"> </body> </html>
위 내용은 CSS를 사용하여 Alt 속성이 있는 모든 요소를 선택하세요.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!