Answers for "html background css"

CSS
4

css background

.my-div{
  background-color: #00f; /* Blue */
}
.div-image{
  background-image: url("Image Path");
  background-position: 
    top right  | left center   | bottom center
    top left   | right center  | bottom right
    top center | center center | bottom left ;
  /* Use any option that met your requirements*/
  background-size: cover; /* Set the image to cover all the div */
  background-repeat: no-repeat; /* Commonly used for that situation */
  background-attachment: fixed; /* the image will stay with you while scrolling same as position: fixed*/
  /* Use background-attachment: scroll [Default Value]; to remove fixed effect */
}
/* 
  Background shortHand 
  background: background-color background-image background-repeat background-position
*/
Posted by: Guest on June-14-2021
5

add background image in css

.w {
background-image: url("images/tom1.png");
}

.a {
background-image: url("images/tom2.png");
}

.s {
background-image: url("images/tom3.png");
}
Posted by: Guest on August-20-2020
5

background css

/* Color (Example: red): */
html,body {
  background-color: red;
}

/* Image (Example: your.picture): */
html,body {
  background-image: url("your.picture");
}
Posted by: Guest on April-25-2020
4

background css

body {
  background: #ffffff url("img_tree.png") no-repeat fixed right top;
}
Posted by: Guest on April-29-2020

Browse Popular Code Answers by Language