지정된 속성과 값을 가진 요소를 선택하려면 [속성 = "값"] 선택기를 사용하세요.
다음 코드를 실행하여 CSS [속성 = "값"] 선택기를 구현할 수 있습니다. 여기서는 속성을 rel,
Live Demo
<!DOCTYPE html> <html> <head> <style> a[rel = nofollow] { border: 3px solid blue; } </style> </head> <body> <a href = "https://qries.com/What-is-Uber-s-business-model-and-how-does-it-compare-with-Ola-s-model-in-India" rel = "nofollow">Uber's Business Model</a><br><br> <a href = "https://www.qries.com/How-does-share-market-work-in-India" rel = "noreferrer">Share Market</a> </body> </html>
위 내용은 CSS를 사용하여 지정된 속성과 값을 가진 요소를 선택하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!