Answers for "css back"

CSS
124

css background image

background-image: url("image.png");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
Posted by: Guest on April-07-2020
2

div background image

#avatar {
    /* This image is 687 wide by 1024 tall, similar to your aspect ratio */
    background-image: url('http://i.stack.imgur.com/Dj7eP.jpg');
    
    /* make a square container */
    width: 150px;
    height: 150px;

    /* fill the container, preserving aspect ratio, and cropping to fit */
    background-size: cover;

    /* center the image vertically and horizontally */
    background-position: top center;

    /* round the edges to a circle with border radius 1/2 container size */
    border-radius: 50%;
}
Posted by: Guest on February-17-2021
1

css background image

/*Transparent Background Image*/

background: linear-gradient(rgba(0,0,0,0.5),
  rgba(0, 0, 0, 0.5)), url(milano-gallery.jpg) no-repeat center center fixed;
  background-size: cover;
/*
Fills entire page with image, no white space
Scales image as needed
Retains image proportions (aspect ratio)
Image is centered on page
Does not cause scrollbars
As cross-browser compatible as possible
*/
Posted by: Guest on September-04-2021
5

background css

body {
  background: #ffffff url("img_tree.png") no-repeat fixed right top;
}
Posted by: Guest on April-29-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
7

css background image

background-image: url("image.gif");
Posted by: Guest on April-01-2020

Browse Popular Code Answers by Language