如何在单个声明中设置不同的背景属性?


CSS(层叠样式表)是设计网站视觉外观(包括背景属性)的强大工具。使用 CSS,可以轻松自定义网页的背景属性,从而创建独特的增强用户体验的设计。使用单个声明设置各种背景属性是一种高效的方法,有助于 Web 开发人员节省时间并使代码简洁。

理解背景属性

在单个声明中设置多个背景属性之前,我们需要了解 CSS 中可用的不同背景属性以及每个属性的工作方式。以下是每个属性的简要概述。

  • background-color − 此属性允许设置元素的背景颜色。

  • background-image − 此属性允许设置元素的背景图像。可以使用图像 URL、线性渐变或径向渐变设置背景图像。

  • background-repeat − 此属性允许设置背景图像的重复方式。可以使用 repeat、repeat-x、repeat-y 和 no-repeat 等值进行控制。

  • background-position − 此属性允许设置背景图像的位置。可以使用 top、bottom、left、right 和 center 等值来定位背景图像。

  • background-size − 此属性允许设置背景图像的大小。可以使用 Auto、Cover、Include 或以像素、em 或百分比表示的特定大小值来设置背景图像大小。

  • background-attachment − 此属性允许设置背景图像是否随页面滚动或保持固定。

在一个声明中设置不同的背景属性

简写属性“background”用于设置多个背景属性,它允许在一个声明中设置背景颜色、图像、重复、位置和附件。

语法

selector {
   background: [background-color] [background-image] [background-repeat] [background-position] [background-size] [background-attachment];
}

此处属性的顺序无关紧要,每个属性之间用空格隔开。根据设计要求,可以在“background”简写属性中包含其他属性。

在单个声明中设置多个背景属性的示例。

现在,我们将了解一些在单个声明中设置多个背景属性的示例。

示例 1:设置背景图像

在这里,我们将使用“background”简写属性来设置 body 元素的背景图像。

<!DOCTYPE html>
<html>
<head>
   <style>
      body {
         background: url("https://tutorialspoint.com/dip/images/black_and_white.jpg") no-repeat center center fixed;
      }
      h3 {
         text-align: center;
      }
   </style>
</head>
<body>
   <h3>Setting a background image in the body element</h3>
</body>
</html>

在上面的示例中,我们设置了 body 元素的背景图像和背景颜色。我们还将背景位置设置为居中,并固定了背景图像,以便在滚动时它不会移动。“no-repeat”属性确保背景图像不会重复。

示例 2:设置渐变背景

在这里,我们将使用 background 简写属性来设置 body 元素的渐变背景。

<!DOCTYPE html>
<html>
<head>
   <title>Setting the Gradient Background</title>
   <style>
      body {
         background: linear-gradient(to top, #00cfff, #1e40ff);
      }
      h1,h3 {
         text-align: center;
      }
   </style>
</head>
<body>
   <h1>Welcome to TutorialsPoint</h1>
   <h3>Setting the Gradient Background in the body element</h3>
</body>
</html>

在上面的示例中,我们使用了“linear-gradient”函数来设置渐变背景。“to top”参数指定渐变应从下到上。

示例 3 - 在 div 元素中设置背景图像

在这里,我们将使用“background”简写属性来设置 div 元素的背景图像。

<!DOCTYPE html>
<html>
<head>
   <style>
      body {
         text-align: center;
      }
      div {
         background: lightblue url("https://tutorialspoint.com/dip/images/einstein.jpg") no-repeat center fixed;
         height:300px;
         width:250px;
         margin:auto;
      }
   </style>
</head>
<body>
   <h2>Setting the Background image for the div element</h2>
   <div></div>
</body>
</html>

在上面的示例中,我们设置了 body 元素的背景图像和背景颜色。我们还将背景位置设置为居中,并固定了背景图像,以便在滚动时它不会移动。

结论

在本文中,我们讨论了在单个声明中设置背景属性。背景属性是样式化网页的重要组成部分。我们使用简写属性在一个声明中设置多个背景属性。“background”简写属性对于节省时间和提高代码可读性非常有用。

更新于:2023年4月12日

224 次浏览

启动您的职业生涯

完成课程获得认证

开始学习
广告