Answers for "how to make image positioned background"

CSS
5

how to make fixed background image in css

body {
  background-image: url("img_tree.gif");
  background-repeat: no-repeat;
  background-attachment: fixed;
}
Posted by: Guest on February-16-2021
0

css background image shown on top right

<style>
body {
  background-image: url("img_tree.png");
  background-repeat:no-repeat ;
  background-position:top right ;
}
</style>
Posted by: Guest on April-25-2022

Code answers related to "how to make image positioned background"

Browse Popular Code Answers by Language