CSS 设置背景图像大小
使用CSS,我们可以使用’background-image’属性为HTML元素设置背景图像。此外,还需要在添加背景图像之后设置背景图像的尺寸。
我们可以使用CSS的’background-size’属性来设置背景图像的大小。
语法
用户可以按照下面的语法使用CSS来设置背景图像的大小。
background-size: width length | width | contain | inherit | cover | initial
我们可以使用上述值来设置背景图片的大小。在这里,我们解释了所有的值。
- width length - 它设置背景图片的宽度和高度。用户可以使用像素、百分比或rem来设置宽度和长度的值。
-
width - 它只设置图像的宽度,并设置高度为’auto’。
-
contain - 它用于在不减小背景图片尺寸的情况下设置HTML元素的背景图片。
-
inherit - 它从父元素的背景图片继承背景图片大小。
-
cover - 它以适应HTML元素的方式设置背景图片的尺寸。
示例1
在下面的示例中,我们为HTML div元素设置了背景图片。div元素的尺寸为500 x 300。使用background-size属性,我们将200 x 200的尺寸设置为背景图片。
在输出中,用户可以观察到背景图片的尺寸小于div元素。此外,我们使用了’background-repeat: no-repeat’的CSS属性来避免重复。
<html>
<head>
<style>
.div {
background-image: url("https://www.tutorialspoint.com/css/images/css-mini-logo.jpg");
background-size: 200px 200px;
width: 500px;
height: 300px;
border: 1px solid blue;
background-repeat: no-repeat;
}
</style>
</head>
<body>
<h3>Using the background-size CSS property to set the size of the background image</h3>
<div class = "div">
This is a content of the div.
</div>
</body>
</html>
示例2
在下面的示例中,我们使用了’background-size: cover’ CSS属性来设置背景图像的尺寸。
在输出中,我们可以观察到背景图像适合div元素。然而,当我们将background-size设置为cover时,一些图像边缘被裁剪了。
<html>
<head>
<style>
.div {
background-image: url("https://i.pinimg.com/736x/91/aa/88/91aa882cdcb4632063535e86c829d3ba.jpg");
background-size: cover;
width: 500px;
height: 500px;
border: 2px solid green;
}
</style>
</head>
<body>
<h3>Using the <i> background-size </i> CSS property to set the size of the background image</h3>
<div class = "div">
This is a content of the div.
</div>
</body>
</html>
示例3
在下面的示例中,我们使用了“background-size:contian”CSS属性来设置背景图片的大小。
在输出中,我们可以看到它设置了背景图片,而没有压缩图片的尺寸。
<html>
<head>
<style>
.div {
background-image: url("https://cdn.pixabay.com/photo/2016/06/02/02/33/triangles-1430105__480.png");
background-size: contain;
width: 500px;
height: 500px;
border: 2px solid green;
font-size: 3rem;
}
</style>
</head>
<body>
<h3>Using the <i> background-size: contain </i> CSS property to set the size of the background image</h3>
<div class = "div">
Hello! How are you?
</div>
</body>
</html>
示例4
在下面的示例中,我们只给出了‘background-size’属性的宽度值。当我们仅使用一个值作为‘background-size’属性时,它会自动设置高度为自适应,用户可以在输出中看到。
<html>
<head>
<style>
.div {
background-image: url("https://images.pexels.com/photos/235985/pexels-photo-235985.jpeg?cs=srgb&dl=pexels-pixabay-235985.jpg&fm=jpg");
background-size: 20rem;
width: 500px;
height: 500px;
border: 2px solid green;
font-size: 3rem;
}
</style>
</head>
<body>
<h3>Using the <i> background-size: length auto </i> CSS property to set the size of the background image</h3>
<div class = "div">
Hello! How are you?
</div>
</body>
</html>
使用CSS,用户学会了设置背景图片的大小。我们可以设置自定义尺寸来设置背景图片。此外,我们还可以将背景大小的宽度和高度设置为”auto”。如果用户希望使用背景覆盖整个HTML元素,他们应该将”cover”作为background-size属性的值。