Shamoon
Shamoon

Reputation: 43501

How can I have a horizontal scrollable element with bootstrap?

I have this: enter image description here

This is what I have - and I don't want the icons to wrap on 2 lines.

I have:

<li class="list-group-item participants-grouping-li">
  <span class="avatar">....
</li>

And I tried:


.participants-grouping-li {
  overflow-x: scroll;
}

But no dice. What am I missing? I'm focusing on making this mobile friendly, obviously.

Upvotes: 1

Views: 31

Answers (1)

Chirag Maniar
Chirag Maniar

Reputation: 346

Try below-mentioned snippet:

.participants-grouping-li {
  overflow-x: scroll;
  white-space: nowrap;
}

Upvotes: 1

Related Questions