CSS-图片如何铺满div

第一种结构:图片是子元素

<div>
        <img src="引入图片地址" alt="" class="Img">
</div>

方法一:img元素添加 object-fit:cover

div{
  width: 500px;
  height: 500px;
 
}
.Img{
    width: 100%;
    height: 100%;
    object-fit:cover;
}

方法二:img元素垂直居中,最小宽高都设置为满屏

div{
	width: 500px;
	height: 500px;
	position:relative;
	overflow:hidden;

	}
.Img{
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	min-width: 100%;
	min-height: 100%;
	transform:translate(-50%,-50%);
}

第二种结构:图片是背景图片

<div class="container"></div>

方法:div元素添加 background-size: cover;设置图片为不重复no-repeat

.container{
				height: 500px;
				width: 500px;
				margin: 0px auto;
				background: url('../Status/img/health.png') no-repeat;
				background-size: cover;
			}
相关推荐
m0_7482500312 分钟前
前端pdf预览方案
前端·pdf·状态模式
neeef_se13 分钟前
【Linux】WG-Easy:基于 Docker 和 Web 面板的异地组网
linux·前端·docker
stormsha31 分钟前
解决 npm 安装慢的问题:加速 npm 包下载的实用方法
前端·npm·node.js
lulu_063235 分钟前
safari 浏览器输入框 focus时不显示那一闪一闪的图标
前端·css·vue·safari·element-plus
sunshine__sun35 分钟前
自动化测试报错:Exception managing chrome: error decoding response body
java·前端·chrome
m0_7482352442 分钟前
前端:HTML、CSS、JS、Vue
前端·javascript·html
一朵好运莲1 小时前
HBuilderX(uni-app)Vue3路由传参和接收路由参数!!
前端·vue.js·uni-app
编织幻境的妖1 小时前
用户认证系统登录界面
前端·css·css3
tester Jeffky1 小时前
探索HTML5与CSS3的Flex布局:构建现代网页设计的灵活框架
前端·css3·html5
灵性(๑>ڡ<)☆1 小时前
智慧商城项目2(vue核心技术与实战)
前端·javascript·vue.js