Tell me, please, why is the page background displayed in all browsers except safari 5.1
?
On this page, the background is made similarly, but it is displayed in safari
.
Tell me, please, why is the page background displayed in all browsers except safari 5.1
?
On this page, the background is made similarly, but it is displayed in safari
.
Most likely because safari does not support this entry:
background: url("../images/bg_wrap0.jpg") no-repeat fixed center center / cover transparent;
and you should write it another way:
background: url(../images/bg_wrap0.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;
Enough and two lines). I worked in Safari 5.1.7
:
background: url(../img/shadow.png) 50% -0.6rem no-repeat; background-size: 100% 100%;
Source: https://ru.stackoverflow.com/questions/197014/
All Articles