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