我有一個鏈接標記,我要爲其添加背景圖像。現在我指定了背景的寬度和高度,即圖像的寬度和高度。問題在於瀏覽器不會將背景圖像調整爲指定大小,它會忽略它們。 這是我的代碼:有什麼建議嗎?背景圖像未按指定的寬度和高度設置大小
<div align="center" style="font-size: 14px; font-weight: bold; font-family: Arial,
Helvetica, sans-serif;">
<a id="displayText" href="javascript:toggle();" title="UK referral system credits"
style="background: url(images/earnings.png) no-repeat center; width: 150px;
height: 40px;">Show my earnings</a>
<iframe id="toggleText" style="display: none;" frameborder="0" height="700"
src="http://v4m.mobi/cwf/facebook/uk/user_temp_credits_earned.php"; target="_blank"
align="center" width="300" scrolling="Auto"; bgcolor="#C9D3DE"> </iframe>
</div>
謝謝
高度和寬度將不會內聯元素工作。使用'a {display:block}'設置你的a並使其浮動。 :) – Bob
謝謝islandmyth,它的工作原理 – DextrousDave