Home > Enterprise >  How can i get this custom background for my developement?
How can i get this custom background for my developement?

Time:08-10

How do i get this custom background for my website. I designed it in figma but now idk how to put it in developement.

https://i.stack.imgur.com/B00Y1.png

CodePudding user response:

Using CSS you can set your image as the background.

please refer code below.

 body {
   background: url(https://i.stack.imgur.com/B00Y1.png);
  
} 

CodePudding user response:

Using CSS you can set your image as the background.

css code below:

 body {
   background: url(https://i.stack.imgur.com/B00Y1.png);
  
} 

CodePudding user response:

you have to use position absolute and z-index to adjust each lined in backgroud as per requirement.

  • Related