画像を200pxスパンの右端に配置したいと思います。代わりに、「hello」テキストの最後に配置され、「hello」は200pxより短いため、200pxスパンの右端には配置されません。
<span>Hello</span>
span {
background-image: url("image.gif");
background-position:right center;
background-repeat: no-repeat;
min-width: 200px;
width: 200px;
}