2013-12-20 43 views

回答

1

你試過:

<div id="img-frame"> 
    <div style="background:url(mypathimg.png) 100% 100%;" /> 
</div> 
0

你可以嘗試:

<div id="img-frame"> 
    <div style="background-size: cover;" /> 
</div> 
0

您還可以設置圖像的寬度和高度爲100%,如果你不希望它作爲背景圖片。你可能需要提供一個你到目前爲止的例子,並且要更具體。

#img-frame{ 
    width:100px; 
    height:100px; 
} 

#img-frame img{ 
    width:100%; 
    height:100%; 
} 
2

由於沒有其他的答案是完整的,改變標記來:

<div id="img-frame"> 
    <div style="background-image:url(yoururl.png)" class="img"></div> 
</div> 

現在添加CSS:

.img-frame > .img { 
    background-size:cover;  /* Scale to fit optimistically */ 
    background-position:center; /* Scale from center */ 
    width:100%;     /* Same width as parent */ 
    height:100%;     /* Same height as parent */ 
} 
0

你可以使用CSS3規則:背景大小

<div id="img-frame"> 
<div style='background:url(mypathimg.png) ;background-size:contain;' ></div>