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 .

    2 answers 2

    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; 
    • thank. everything is exactly like this - cyklop77

    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%;