I want to set the background image in onsenui.

Asked 1 years ago, Updated 1 years ago, 95 views

Using the Onsen UI, even if you specify background in the body setting in style.css, it does not take effect.
I'd like to set up a background image, but is there a good sample somewhere?

onsen-ui

2022-09-30 19:10

1 Answers

There is a class called ".page__background" per onsen-css-components.css, so if you define it in this class, it will be reflected.

.page__background{
  background-image:url('image path');
}


2022-09-30 19:10

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.