Issue
Is it possible to set different styles when my app is on an IOS or Android device in HTML or CSS?
For example, IOS devices space out <ion-title>
differently than Android devices.
Solution
In that case you can use something like this.
.ios ion-title {
color: black;
}
.md ion-title {
color: blue;
}
Also you can check it out the official documentation here Ionic Platform Style
Answered By - Quethzel Diaz
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.