扫码关注官方订阅号
图片宽度根据屏幕自适应100%,高度要一个固定值 700px图片的样式怎么写?单纯的 css + html/html5 能解决吗?
<p class="recomImg">
<img src="img/img.jpg" >
</p>
.recomImg{
width:100% height:700px;
}
ringa_lee
.recomImg{ position: relative; width: 100%; padding-bottom: 700px; overflow: hidden; img{ width: 100%;position: absolute; } }
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
ringa_lee