CSS background-position-x and y style Not Support Firebox issue

Firefox Not Supporting Style Code:

div{
background-image: url(../images/welcome.jpg);
background-attachment: fixed;
background-size: cover;
background-position-y: 10px;
background-position-x: 10px;
}

 

Firefox Supporting Style Code:

div{
background-image: url(../images/welcome.jpg);
background-attachment: fixed;
background-size: cover;
background-position: 10px 10px;
}

Leave a Reply

Your email address will not be published. Required fields are marked *