How to display List view horizontally and responsive

0
Hi There, How to display List view  horizontally and  responsive, Any Suggestions?
asked
1 answers
0

Hi Raj,

Add a class to your list view ie flex-list then add the following to your sass or css derivative:

.mx-listview.flex-list {
  & >ul > li {
    display: inline-flex;
  }
}

I believe float:left; should also work.

answered