PHP-CSS-Parser
PHP-CSS-Parser copied to clipboard
Problem with value of background-position with multiple images
Using 8.1.0
Tested CSS:
div { background-position: top left, right bottom }
Interpreted rule for background-position
:
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