Dividers are automatically added in CSS through and content. They can be changed by modifying a local CSS custom property --bs-breadcrumb-divider, or through the $breadcrumb-divider Sass variable — and $breadcrumb-divider-flipped for its RTL counterpart, if needed. We default to our Sass variable, which is set as a fallback to the custom property. This way, you get a global divider that you can override without recompiling CSS at any time.

  1. <nav style="--bs-breadcrumb-divider: '>';" aria-label="breadcrumb">
  2. <ol class="breadcrumb">
  3. <li class="breadcrumb-item"><a href="#">Home</a></li>
  4. <li class="breadcrumb-item active" aria-current="page">Library</li>
  5. </nav>

When modifying via Sass, the function is required to generate the quotes around a string. For example, using > as the divider, you can use this:

It’s also possible to use an embedded SVG icon. Apply it via our CSS custom property, or use the Sass variable.

  1. <nav style="--bs-breadcrumb-divider: url(&#34;data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M2.5 0L1 1.5 3.5 4 1 6.5 2.5 8l4-4-4-4z' fill='currentColor'/%3E%3C/svg%3E&#34;);" aria-label="breadcrumb">
  2. <ol class="breadcrumb">
  3. <li class="breadcrumb-item"><a href="#">Home</a></li>
  4. <li class="breadcrumb-item active" aria-current="page">Library</li>
  5. </ol>

You can also remove the divider setting (empty strings in CSS custom properties counts as a value), or setting the Sass variable to $breadcrumb-divider: none;.

Breadcrumb - 图4

  1. <nav style="--bs-breadcrumb-divider: '';" aria-label="breadcrumb">
  2. <ol class="breadcrumb">
  3. <li class="breadcrumb-item"><a href="#">Home</a></li>
  4. <li class="breadcrumb-item active" aria-current="page">Library</li>
  5. </ol>
  6. </nav>

For more information, see the WAI-ARIA Authoring Practices for the breadcrumb pattern.