在网页设计中,背景居中是经常使用的一种效果。CSS提供了一种方便的方法来设置背景居中的方式,下面我们来详细了解一下。首先,在CSS中设置背景居中需要使用background属性,该属性值可以设置为&q...
在网页设计中,背景居中是经常使用的一种效果。CSS提供了一种方便的方法来设置背景居中的方式,下面我们来详细了解一下。
首先,在CSS中设置背景居中需要使用background-position属性,该属性值可以设置为"center",这样就能实现背景图像居中的效果。
下面是一个例子:
p {
background-image: url('bg.jpg');
background-repeat: no-repeat;
background-position: center;
} p {
background-image: url('bg.jpg');
background-repeat: no-repeat;
background-position: 50px 20px;
}