CSS 背景background

CSS 背景background

描述

背景是用于设置元素背景样式的简写属性。

可能的值

背景是一个简写属性,代表以下内容。具体取决于实际属性而有所不同。

  • background-color - 设置元素背景、边距和边框背景的纯色。

  • background-image - 定义要放置在元素背景中的图像的位置。

  • background-repeat - 设置元素背景中图像的重复方向。

  • background-attachment - 设置元素背景中任何图像的附加状态。

  • background-position - 设置原始图像在元素背景中的位置。

  • background-clip - 指定背景图像的绘制区域。

适用于

所有的HTML元素。

DOM语法

object.style.background = "Value according to the used property";

示例

<html>
   <head>
   </head>

   <body>
      <p style = "background:url(https://geek-docs.com/static/logo.png) repeat fixed;">
         This paragraph has fixed repeated background image. 
         This paragraph has fixed repeated background image. 
         This paragraph has fixed repeated background image. 
         This paragraph has fixed repeated background image.
      </p>
   </body>
</html> 

它将产生以下结果−

CSS 背景background

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程