Botond Vajna
Botond Vajna

Reputation: 1541

mix background position in pixels and percentage

I try this, and is not woking:

body {
    background-image: url(images/bgr.jpg);
    background-position: 156px, right;
    background-repeat: no-repeat;
}

is there a way to make this working?

Upvotes: 0

Views: 397

Answers (2)

gsiradze
gsiradze

Reputation: 4733

you need not comma here:

background-position: 156px, right;

right is:

background-position: 156px right;

Upvotes: 0

Luca Detomi
Luca Detomi

Reputation: 5716

Simply remove comma.

body {
    background-image: url(images/bgr.jpg);
    background-position: 156px right;
    background-repeat: no-repeat;
}

Upvotes: 2

Related Questions