[attribute = ”value”] セレクターを使用して、指定された属性と値を持つ要素を選択します。
次のコードを実行して、CSS [attribute = "value"] セレクターを実装してみてください。ここでは、プロパティを rel、
ライブ デモ
<!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 中国語 Web サイトの他の関連記事を参照してください。