PHP-CSS-Parser icon indicating copy to clipboard operation
PHP-CSS-Parser copied to clipboard

Problem with value of background-position with multiple images

Open eternoendless opened this issue 7 years ago • 0 comments

Using 8.1.0

Tested CSS:

div { background-position: top left, right bottom }

Interpreted rule for background-position:

screen shot 2017-12-13 at 16 22 55

It looks like the value is being interpreted roughly as

top (left, right) bottom

...instead of

(top left), (right bottom)

This makes processing the position for each image really hard

eternoendless avatar Dec 13 '17 15:12 eternoendless