gpt4 book ai didi

html - css html 百分比调整图像大小

转载 作者:太空宇宙 更新时间:2023-11-04 03:05:11 26 4
gpt4 key购买 nike

我无法在 css/html 中调整图像的大小。我可以以 px 为单位调整它的大小,但不能以 % 为单位。我已经尝试过最小高度、最小宽度。这是我的代码,我无法调整它的大小。

body{
margin: 0;
}
#top{
background-color: #53FF40;
width: 100%;
height: 50%;
}
#bottom{
background-color: #FF5757;
width: 100%;
height: 50%;
}
.img-yes{
width: 25%;
height: 25%;
}
<!DOCTYPE html>
<html>
<head>
<title>DoYouLoveDogs</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<body>
<div id="top">
<div class="img-yes">
<img class="img-yes" src="img/yes.png">
</div>
</div>
<div id="bottom">
</div>
<script src="js/jquery.js"></script>
<script src="js/button.js"></script>
<script>document.write('<script src="http://' + (location.host || 'localhost').split(':')[0] + ':35729/livereload.js?snipver=1"></' + 'script>')</script>
</body>
</html>

最佳答案

display: block?

.img-yes {
display: block;
width: 25%;
height: 25%;
}

关于html - css html 百分比调整图像大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30596044/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com