# CSS - Tricks

```CSS
& .breadcrumbs-container .breadcrumb span {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
}
```

```CSS
.element::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.element {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
```