ion row scrolly

Solutions on MaxInterview for ion row scrolly by the best coders in the world

showing results for - "ion row scrolly"
Alan
15 Apr 2016
1<ion-row class="forecast_container">
2<ion-col>.......</ion-col>
3<ion-col>.......</ion-col>
4<ion-col>.......</ion-col>
5
6</ion-row>
7
8/**CSS*/
9.forecast_container{
10  flex-wrap: nowrap;
11  overflow-x: scroll!important;
12  overflow-y: hidden;
13}