有沒有一種方法可以從右側顯示background image
百分比?以像素爲單位,這些值運行良好,但不是百分比! 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;
}
我沒有看到這個問題。你能具體瀏覽器嗎? – Lifka
你是否考慮到這些百分比是基於圖像顯示的實際尺寸(關於你的「背景尺寸:自動90%」)......? – CBroe