我正在尝试将图像放入div中,但我不知道该怎么做。
#header {
border: 10px solid blue;
width: 50%;
height: 20%;
}
<div id = 'header'>
<img src = "https://www.petfinder.com/wp-content/uploads/2012/11/140272627-grooming-needs-senior-cat-632x475.jpg">
</div>
答案 0 :(得分:0)
只需将img
宽度设置为100%,它就会缩放到#header
容器的宽度。
#header {
border: 10px solid blue;
width: 50%;
height: 20%;
}
img {
width: 100%
}
<div id = 'header'>
<img src = "https://www.petfinder.com/wp-content/uploads/2012/11/140272627-grooming-needs-senior-cat-632x475.jpg">
</div>
答案 1 :(得分:0)
看看。用这种方式改变你的CSS。在您的css.Working Link
中设置img
标记
CSS:
#header img{
border: 10px solid blue;
width: 50%;
height: 20%;
}
您也可以设置img{width:100%}
。享受!
答案 2 :(得分:0)
您可以像这样使用background-size: cover
:
<强> CSS 强>
#header {
border: 10px solid blue;
width: 50%;
height: 20%;
background: url(https://www.petfinder.com/wp-content/uploads/2012/11/140272627-grooming-needs-senior-cat-632x475.jpg);
background-size: cover
}
<强> HTML 强>
<div id="header"></div>