Use background-position: calc(100% - 20px) center
, For pixel perfection calc()
is the best solution.
ul {_x000D_
width: 100px;_x000D_
}_x000D_
ul li {_x000D_
border: 1px solid orange;_x000D_
background: url("http://placehold.it/30x15") no-repeat calc(100% - 10px) center;_x000D_
}_x000D_
ul li:hover {_x000D_
background-position: calc(100% - 20px) center;_x000D_
}
_x000D_
<ul>_x000D_
<li>Hello</li>_x000D_
<li>Hello world</li>_x000D_
</ul>
_x000D_