Change background color Intel xDK

0

Colleagues.

I'm developing a mobile app by the Intel SDK, but when I view directly in the browser or emulator, the background appears white, but when I view it on my phone (Android 6.0), the background is black.

I have tried to put in body :

background-color: white; //tentei também em hexadecimal

But it's still black.

    
asked by anonymous 28.10.2016 / 17:58

1 answer

0

Have you tried applying! important in css?

background-color: white!important;

And see if no other files are accessing the properties of the body. ;)

    
31.03.2017 / 15:12