0

每个人我都尝试如下的 css 样式:

.image{
        position: absolute;
        width: 100px;
        height:100px;
        padding: 5px;
        margin: 0;
        background-color:green;
    }
    <div class="image">
        <img src="http://www.wallpapersgo.com/wp-content/uploads/2010/02/Dodge-Charger-Car.jpg"/>
    </div>

问题是,显示图像的大小与其相同,但不是预期的 100px * 100px 大小。新鲜的css风格,需要帮助,谢谢!

4

2 回答 2

1

采用:

.image{
        position: absolute;
        width: 100px;
        height:100px;
        padding: 5px;
        margin: 0;
        background-color:green;
    }

.image img {       
        width: inherit;
        height:inherit;
    }
于 2013-07-18T07:43:00.913 回答
0

只需添加

.image img{
  height: 100%;
  width: 100%;
}

http://jsfiddle.net/p67dh/

这是因为您的图像不会自动使用父元素的大小。

于 2013-07-18T07:44:17.427 回答