How do I select the first adjacent sibling?

前端 未结 8 2157
北海茫月
北海茫月 2020-12-30 19:38

I have an HTML list like so:

  • Heading 1
相关标签:
8条回答
  • 2020-12-30 20:19

    The official CSS3 Spec does not currently support anything like this, though I do realize that it would be useful.

    I would try doing searches for some pre-built JavaScript or jQuery scripts/libraries for adding CSS selectors. Although I have never come across anything.

    If you do not find anything, you might as well just do it manually, or try finding a completely different solution.

    0 讨论(0)
  • 2020-12-30 20:22

    Use :first-of-type

    You can read more here

    0 讨论(0)
  • 2020-12-30 20:22

    I know that this question has already a valid marked answer, but maybe other people want to use my css-only solution:

    I wanted to have a list of alerts (in this case bootstrap alerts) in a container and their border to collapse. Each alert has a border-radius, which looks rather silly when they are all in one container. So with margin-top: -1px I made their borders collapse. As a next step I had to modify the styles of the first, every alert in between and the last alert. And this should also look nice for a single alert, two alerts and n alerts.

    .alert {
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
        margin: 0;
    }
    
    // set for the first alert that it should have a rounded top border
    
    .alert:last-child {
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
    }
    
    // set for the last alert that it should have a rounded bottom border
    // if there is only one alert this will also trigger it to have a rounded bottom border aswell
    
    .alert+.alert:last-child {
      margin-top: -1px;
      border-top-left-radius: 0;
      border-top-right-radius: 0;
    }
    
    //for the last border of n alerts we set the top border to be collapsing and remove only the the top rounded borders
    
    .alert+.alert:not(:last-child) {
      margin-top: -1px;
      border-radius: 0;
    }
    
    // for each following alert in between we remove the top rounded borders and make their borders collapse
    

    And here is an angular template for multiple alerts.

    <div id="alertscontainer">
        <div data-ng-repeat="alert in data.alerts" class="alert" data-ng-class="'alert-' + alert.class">
            {{alert.body}}
        </div>
    </div>
    
    0 讨论(0)
  • 2020-12-30 20:25

    It is not possible using CSS as currently defined and implemented. It would require a selector that selects an element on the basis of its siblings after it. CSS selectors can select an element on the basis of preceeding or outer elements, but not on the basis of following or inner elements.

    The desired effect can be achieved using JavaScript in a rather straightforward way, and you can decide, depending on the purpose, whether you just remove the elements from display or completely remove them from the document tree.

    0 讨论(0)
  • 2020-12-30 20:34

    There are a few ways to hide only the "Heading 1" only:

    ul li:first-child {display:none;}

    Alternatively:

    li.parent{ display: none; }
    li.parent + li.parent { display: list-item; }
    

    Also, <li>Child of Heading 2</li> is not a child of <li class="parent">Heading 2</li>. It is a sibling.

    0 讨论(0)
  • 2020-12-30 20:35

    It is possible to target first sibling with CSS, with some limitations.

    For the example in the question it could be done with something like this

    li.heading { display: none; }                   /* apply to all elements */
    li.heading + li.heading { display: list-item }  /* override for all but first sibling */
    

    This works, but requires that you can explicitly set the styles on the siblings to override the setting for first child.

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