当我使用 css 创建一个 div 时,如何使图片适合整个 div,图片不会完全适合其中。它会缩小。图片目前的样子 http://img90.imageshack.us/img90/510/pictureframe.png
CSS部分
#avatar{
padding:35px;
height:70px;
width:50px;
margin: 0px 0 0 0px;
background-color:red;
}
html部分
<div id="avatar">
<img src="/Avatar.png" style="width: 100%;" style="height: 100%;" alt="">
</div>