CSS
 Computer >> コンピューター >  >> プログラミング >> CSS

CSSの役割[属性=値]セレクター


[attribute =” value”]セレクターを使用して、指定された属性と値を持つ要素を選択します。

次のコードを実行して、CSS [attribute ="value"]Selectorを実装してみてください。ここでは、属性を rel、と見なしました。

<!DOCTYPE html>
<html>
   <head>
      <style>
         a[rel = nofollow] {
            border: 3px solid orange;
         }
      </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>

  1. CSSの役割:nth-​​last-of-type(n)セレクター

    CSS:nth-​​last-of-type(n)セレクターを使用して、最後の子から数えて、親の2番目の要素であるすべての要素を選択します。 例 次のコードを実行して、:nth-​​last-of-type(n)セレクターを実装してみてください。 <!DOCTYPE html> <html>    <head>       <style>          p:nth-last-of-type(2) {      

  2. CSSの役割:nth-​​last-child(n)セレクター

    CSS:nth-​​last-child(n)セレクターを使用して、最後の子から数えて、親の子であるすべての要素のスタイルを設定します。 次のコードを実行して、:nth-​​last-child(n)セレクター-を実装してみてください。 例 <!DOCTYPE html> <html>    <head>       <style>          p:nth-last-child(4) {