something like
.material .navbar{
color: red:
}
.ios .navbar{
color: blue:
}
.aurora.navbar{
color: yellow:
}
// something like this
something like
.material .navbar{
color: red:
}
.ios .navbar{
color: blue:
}
.aurora.navbar{
color: yellow:
}
// something like this
You could use Framework7’s device library to detect which operating system the client is using, and load the appropriate CSS code dependant on that. Device | Framework7 Documentation
The best method using pure CSS is Theme Based Rendering Theme Based Rendering | Framework7 Documentation
if-ios - element will be rendered only for iOS themeif-not-ios - element will be removed/hidden for theme other than iOSif-md - element will be rendered only for MD themeif-not-md - element will be removed/hidden for theme other than MDif-aurora - element will be rendered only for Aurora themeif-not-aurora - element will be removed/hidden for theme other than AuroraThank you very much. i am very grateful.