0

Here is a code with background gradient

   background: rgba(0,0,0,0) linear-gradient(rgb(245, 245, 245),rgba(0,0,0,0)) 
   repeat scroll 0 0;

Windows displays OK (chrome, ie, firefox) Windows

MacOS and iphone displays wrong (safari, chrome)

enter image description here

user9709261
  • 247
  • 1
  • 3
  • 7
  • Related https://stackoverflow.com/q/11829410/1207195 – Adriano Repetti Jul 03 '18 at 13:18
  • Possible duplicate of [CSS3 gradient rendering issues from transparent to white](https://stackoverflow.com/questions/11829410/css3-gradient-rendering-issues-from-transparent-to-white) – l'L'l Jul 03 '18 at 15:39

1 Answers1

0

Using hex colors instead of rgb/rgba will fix this problem.

user9709261
  • 247
  • 1
  • 3
  • 7