Css Set Div Background Image Code Example
Example 1: css background image
background-image: url("image.png");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
Example 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%;
}
Example 3: make image background of div
background-image: url("photographer.jpg");
Example 4: background image css
html,body {
background-image: url("your.picture");
}
Example 5: how to set div background image
body {
background-image: url("paper.gif");
background-color: #cccccc;
}
Example 6: adding background image css
/* Answer to: "adding background image css" */
/*
The background-image property sets one or more background images
for an element.
By default, a background-image is placed at the top-left corner
of an element, and repeated both vertically and horizontally.
Tip: The background of an element is the total size of the
element, including padding and border (but not the margin).
Tip: Always set a background-color to be used if the image is
unavailable.
*/
/* Set a background-image for the <body> element: */
body {
background-image: url("paper.gif");
background-color: #cccccc;
}
/* Set two background images for the <body> element: */
body {
background-image: url("img_tree.gif"), url("paper.gif");
background-color: #cccccc;
}
Comments
Post a Comment