Hi guys,
I’m working on an app with tabs
and ion-nav-view
, all stuff are clear till now, but my problem is that I want to set .scroll
properties for one (and just one) ion-view
only. The properties I want to set in style.css
are like this :
height: 100% !important;
background:transparent;
display: -webkit-box !important;
display: -moz-box !important;
display: -ms-flexbox !important;
display: -webkit-flex !important;
display: flex !important;
-webkit-box-direction: normal !important;
-moz-box-direction: normal !important;
-webkit-box-orient: vertical !important;
-moz-box-orient: vertical !important;
-webkit-flex-direction: column !important;
flex-direction: column !important;
What I want to have is something like this
This is done by setting the properties in style.css
, but if I do this, the other ion-view
content is all messed up, and if I exclude the properties, I get something like this
so I want to set those properties for one
ion-view
only.
Thank you for your great work, I’m enjoying.