Naju
Naju

Reputation: 1541

Safari is showing the background color and image

I have using the following CSS for background design, It is working in all browsers but Safari is not showing the background color and image. Am I missing anything?

background: url("https://xyz.xyz.com/src/images/HeaderBackground.png") repeat-x scroll 0 0 / 200px 94px #E2DDD5;

Please advice me..

Upvotes: 0

Views: 116

Answers (1)

Bipin Kumar Pal
Bipin Kumar Pal

Reputation: 1017

.background{
    background: url(images/background.png);
    background-repeat:repeat;
    width:500px;
    background-color:#E2DDD5;
    overflow-x:scroll;
    background-position:200px 94px;
    }

This code is working in safari. I thing usefull for you.

Upvotes: 1

Related Questions