CSS select the first child from elements with particular attribute

前端 未结 2 1744
旧时难觅i
旧时难觅i 2020-12-03 17:46

Lets say that we have the following code:


  
  
  &l         


        
相关标签:
2条回答
  • 2020-12-03 18:21

    The :first-child pseudo-class only looks at the first child node, so if the first child isn't an element[bla="3"], then nothing is selected.

    There isn't a similar filter pseudo-class for attributes. An easy way around this is to select every one then exclude what comes after the first (this trick is explained here and here):

    element[bla="3"] {
    }
    
    element[bla="3"] ~ element[bla="3"] {
        /* Reverse the above rule */
    }
    

    This, of course, only works for applying styles; if you want to pick out that element for purposes other than styling (since your markup appears to be arbitrary XML rather than HTML), you'll have to use something else like document.querySelector():

    var firstChildWithAttr = document.querySelector('element[bla="3"]');
    

    Or an XPath expression:

    //element[@bla='3'][1]
    
    0 讨论(0)
  • 2020-12-03 18:32

    :not([bla="3"]) + [bla="3"] {
      color: red;
    }
    <div>
      <p bla="1">EL1</p>
      <p bla="2">EL2</p>
      <p bla="3">EL3</p>
      <p bla="3">EL3</p>
      <p bla="3">EL3</p>
      <p bla="4">EL4</p>
    </div>

    0 讨论(0)
提交回复
热议问题