Giter Club home page Giter Club logo

Comments (4)

designerbrent avatar designerbrent commented on June 19, 2024

Here is a proposed method for creating breadcrumbs.

screenshot 2016-08-18 16 58 41

This uses the same arrows as the top example that are done with the following code:

 ul.breadcrumb li a:after {
    content: '';
    display: block;
    position: absolute;
    left: -8px;
    top: .25em;
    border-left: solid 4px #989690;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
} 

Thoughts on this @tpitre?

from alps.

tpitre avatar tpitre commented on June 19, 2024

@designerbrent Would it be possible to add a class to each list item? Something like (untested):

.breadcrumb__item {
  margin-right: 10px;
  padding-right: 8px;
  &:after {
    content: ''; 
    display: block; 
    position: absolute; 
    right: 0; 
    top: 50%;
    transform: translateY(-50%); // Always stay centered.
    border-left: 4px solid #989690; 
    border-top: 4px solid transparent; 
    border-bottom: 4px solid transparent;
  }
  &:last-child:after {
    display: none; // Remove from last breadcrumb item.
  }
}

from alps.

tpitre avatar tpitre commented on June 19, 2024

@designerbrent We also have these arrow helper classes that could be used to generate the arrow. We can extend the styles with .breadcrumb__item.

from alps.

designerbrent avatar designerbrent commented on June 19, 2024

Oh, yes, that world work fine, @tpitre. I assume they will be setup as an ordered list?

from alps.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.