UIkit Breadcrumbs
The UIkit breadcrumbs are basically a navigation component in which navigation items are separated by a divider and it is used to specify user location on the website.
Steps To Create UIkit Breadcrumb Component
To create UIkit breadcrumb component, simply follow the following steps.
- Step1: Add
.uk-breadcrumb
class to the breadcrumb container i.e <ul>
element base class.
- Step2: Use
<a>
elements as breadcrumb items within the list.
Example
Breadcrumb Active Item
To create active item of the breadcrumb component, replace the <a>
by <span>
.
Example
Disabled Breadcrumb Item
To make a disabled breadcrumb item, just add the .uk-disabled
class to the <li>
element base class.
Example