在网页设计中,使用图片来填充元素背景,可以让元素背景呈现丰富多彩的外观。使用图片填充元素背景的常用样式标签有background-image、background-repeat、background-position和background-size,下面分别予以介绍。background-image background-image用于设置元素的背景填充图片,background-image的属性值是url函数,url函数要求...
}div{width:420px;height:320px;margin:24px;background-color:#06b7e1;background-image:url(https://img-blog.csdnimg.cn/20210414230229207.png);background-size:140px140px;background-repeat: no-repeat; } background-position(背景图片位置)示例效果图: background-attachment(背景图片是否固定) 背景图片...
1)关键字:background-position: top left; 2)像素:background-position: 0px 0px; 3)百分比:background-position: 0% 0%; 注意,第一个表示水平,不是top,第二个是left。 上面这三句语句,都将图片定位在背景的左上角,表面上看效果是一样的,实际上第三种定位机制与前两种完全不同。 前两种定位,都是将背...
length : 百分数 | 由浮点数字和单位标识符组成的长度值。请参阅 长度单位 position : top | center | bottom | left | center | right 说明: 设置或检索对象的背景图像位置。必须先指定 background-image 属性。 该属性定位不受对象的补丁属性( padding )设置影响。 默认值为: 0% 0% 。此时背景图片将被...
background-position: left center; 背景图水平居左,垂直居中 1.5cm bottom 5em 50% 0px 0px,center background-attachment:定义背景图像的显示(固定)方式。 background-attachment: scroll; 背景相对于元素本身固定, 而不是随着它的内容滚动(对元素边框是有效的)。
background-position总共有5个属性,分别是top、right、bottom、left、center,这个5个属性可以单独使用,也可以两两使用。 单独使用时,默认第二个参数为center,两两使用时背景图片占据位置如下图: background-position(背景图片位置)示例html代码: background-position(背景图片位置)示例 ...
position : top | center | bottom | left | center | right 说明: 设置或检索对象的背景图像位置。必须先指定 background-image 属性。 该属性定位不受对象的补丁属性( padding )设置影响。 默认值为: 0% 0% 。此时背景图片将被定位于对象不包括补丁( padding )的内容区域的左上角。
background:背景.position:位置. 一.background-position:lefttop; 背景图片的左上角和容器(container)的左上角对齐,超出的部分隐藏。 等同于background-position:0,0; 也等同于background-position:0%,0%; 二.background-position:rightbottom; 背景图片的右下角和容器(container)的右下角对齐,超出的部分隐藏。
position : top | center | bottom | left | center | right 说明: 设置或检索对象的背景图像位置。必须先指定 background-image 属性。 该属性定位不受对象的补丁属性( padding )设置影响。 默认值为: 0% 0% 。此时背景图片将被定位于对象不包括补丁( padding )的内容区域的左上角。
使用background-position属性可以调整背景图片的位置。可以设置为具体的像素值、百分比值或关键字,如left、right、top、bottom等。 3. background-repeat属性 背景图片默认会在元素中重复平铺,可以使用background-repeat属性来控制重复的方式。可以设置为repeat、repeat-x、repeat-y或no-repeat。 4. background-attachment...