css——背景画像は変形せずに縦横比を保ちます

コード

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<title></title>
		<style>
			html{
      
      
				height: 100%;
			}
			body{
      
      
				/* background: url('img/2.jpg') no-repeat top center;
				background-size: container; */
				background: url('img/1.jpg') no-repeat top center;
				background-size: cover;
			}
		</style>
	</head>
	<body>
		
	</body>
</html>

前者は長辺が表示され、
後者は短辺が表示されます

Supongo que te gusta

Origin blog.csdn.net/xulihua_75/article/details/131310808
Recomendado
Clasificación