Answers for "css style for background image"

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
13

how to add background in css

body {
 background-image: url("paper.gif");
 background-color: #cccccc;
}
Posted by: Guest on November-07-2019
2

background image css

.wrapper {
    background: url('./images/homeBg.png') no-repeat;
    background-size: 100vw; 
    float: left;
    height: 100vw;
    width: 100vw;
}
Posted by: Guest on March-19-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
1

background css image

background-image: url('./image.jpg');
Posted by: Guest on October-05-2020

Code answers related to "css style for background image"

Browse Popular Code Answers by Language