Is there a way to display a background image
from right in percents? In pixels the values working well, but not in percents!
JSfiddle
html:<div></div>
css:
div {
position: absolute; top: 0; left: 0; bottom: 0; right: 0;
background-image: url('http://www.pngall.com/wp-content/uploads/2016/07/Arrow-PNG-Pic.png');
background-size: auto 90%;
background-position: right 20% center;
background-repeat: no-repeat;
}