Y
Y
Yan Usenko2021-01-04 15:50:08
css
Yan Usenko, 2021-01-04 15:50:08

How to remove white lines on the site when viewed on Ipad?

Good afternoon!
I ran into a problem, when viewing the site on android or windows, there is no problem, but when viewing the site on Ipad, there are white lines in the About block and I have no idea how to solve it.
https://yanusenko.github.io/aboutme
Located behind the black blocks and visible in the shadows. When scaling, they move
Please tell me
5ff30ead78e90240809398.png

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Alexander Sharomet, 2021-01-04
@YanUsenko

Try instead

filter: drop-shadow(10px 10px 1px rgba(0, 0, 0, 0.25));

Use in .about__box class. or try adding vendor prefixes for this property
box-shadow: 10px 10px 1px rgba(0, 0, 0, 0.25);
filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="1" /><feOffset dx="11" dy="11" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.25)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(10px 10px 1px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(10px 10px 1px rgba(0, 0, 0, 0.25));

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question