SamsungInternet / support

For general Samsung Internet support. You can use the Issues register here as a way to ask support questions.
MIT License
18 stars 0 forks source link

Background-color on Samsung Internet application #70

Closed CosminAndrei2000 closed 5 years ago

CosminAndrei2000 commented 5 years ago

Just finished editing a site, but when I published, the Samsung Internet application do not display background-color on div.

Everything is displayed correctly in Chrome, only the Samsung Internet encounters this problem. Below I attached 2 screenshots to understand better. Any solution?

HTML :

<!DOCTYPE html> <html> <head> <meta name="viewport"content="width=device-width, initial-scale=1.0"> <meta charset="UTF-8"> <title> Here is title </title> </head> <body> <div class="paragrafacasa"> <p> Here is my text </p> </div> </body> </html>

CSS : @media all and (min-width: 360px) and (max-width: 440px) { body { background-color: #4dc6ff; } .paragrafacasa { width: 320px; margin-right: auto; margin-left: auto; background-color: #ffffff94; border: 2px solid black; border-radius: 8px; margin-top: 50px; } .paragrafacasa p { font-size: 30px; text-align: center; } }

dul8l fldt8

AdaRoseCannon commented 5 years ago

Which version of Samsung Internet are you using? Alpha in hexidecimal should be enabled in version 6+ (Chromium 52+)

In the meantime use rgba()

CosminAndrei2000 commented 5 years ago

I solved the problem. It was from the addon domain. We had the files on the addon domain and did not display properly.