Answers for "html back ground image"

CSS
0

html background image

<style>
body {
  background-image: url('img_girl.jpg');
  
  background-repeat: no-repeat;
  background-attachment: fixed; 
  
  background-size: 100% 100%;

  }
</style>
Posted by: Guest on September-27-2021

Browse Popular Code Answers by Language