Can I make the CSS :after pseudo element append content outside the element?

前端 未结 3 1108
失恋的感觉
失恋的感觉 2021-01-01 08:51

I want to format a breadcrumb trail of links using an HTML » entity between adjacent links, so it looks like this:

home »

相关标签:
3条回答
  • 2021-01-01 09:25

    Normally you code these menus as ordered lists anyway, so it makes sense to do something like this instead:

    #breadcrumb-trail ol { 
        list-style: none; 
        margin: 0;
        padding: 0; 
    }
    
    #breadcrumb-trail li { 
        display: inline; 
    }
    
    #breadcrumb-trail li:after { 
        content: ' » '; 
    }
    
    #breadcrumb-trail li:last-child:after { 
        content: none; 
    }
    <nav id="breadcrumb-trail">
        <h1>My Amazing Breadcrumb Menu</h1>
        <ol>
            <li><a href="">about</a></li>
            <li><a href="">fos</a></li>
        </ol>
    </nav>

    0 讨论(0)
  • 2021-01-01 09:31

    Given the flexibility and awesomeness of CSS, it looks pretty much do-able. Tried this in current Chrome, FF, and IE and it does the job just as expected, without the need to add addtional markup:

    #box {
      width: 100px;
      height: 100px;
      background: #eee;
      position: relative;
    }
    
    #box:after {
      content: '...appended text outside box';
      position: absolute;
      margin-left: 100%;
      left: 0;
      width: 200px;
    }
    <div id="box">
      Some Box
    </div>

    Small Caveat: Absolutely positioned `elements are included in the boxes' dimensions, therefore elements floating or aligned next to it are unable to dynamically respect the width of the pseudo elements' content.

    0 讨论(0)
  • 2021-01-01 09:35

    The spec says:

    As their names indicate, the :before and :after pseudo-elements specify the location of content before and after an element's document tree content.

    Note the key phrase at the end of this sentence, which refers to the inner content (or inner text). So, the pseudo-elements are inserted into the beginning of the end within the specified elements' content. Therefore the right double angled quote is being inserted after the text of your hyperlinks, rather than after the hyperlinks.

    Here's a visual representation of the tree of the DOM element for one such link with both pseudo-elements:

    a
      a:before
      content
      a:after
    

    I guess one workaround to this behavior, is to wrap each link in a span then apply styles to nav#breadcrumb-trail span:after, but that'd result in unnecessary markup... worth a shot in any regard though.

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