boutique replica bags up ideas

the best replique rolex and prices here.

julia highlight 99j hair color 10a quality straight human hair lace front wigs 8 - 24 inches pre plucked hairline 13x4 inches lace front brazilian wig onlinefor sale

CSS background-position Property Example

Updated on     Kisan Patel

The CSS background-position property sets the starting position of a background image for an HTML element.

Syntax

background-position: top;
background-position: bottom;
background-position: left;
background-position: right;
background-position: center;
background-position: 100px 5px;

Example

body {
  background-image: url("../image/background.jpg");
  background-position: center;
  background-repeat: no-repeat;
}

Lets take another example. In this example, the background image 45px from the right and 20px from the bottom of the container.

body {
   background-image: url("../images/bg.jpg");
   background-position: right 45px bottom 20px;
   background-repeat: no-repeat;
}

CSS

Leave a Reply