Answers for "backround 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

background color using css

/* To apply color to background you have to use 'background-color' property and value of property is color name. */
html,body {
  background-color: blue;
}
Posted by: Guest on June-04-2020
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
3

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;
}
Posted by: Guest on April-26-2020
0

background in css

/* There are several ways of setting a background, like in HTML or CSS
	(I advise you to set it in CSS) You can set a colour or image with
	the same attribute: */

/* Setting the colour in a div, body, html (html is the whole page),
	class, and id: */
div, body, html, .myClass, #myId {
	background-color: grey;
}
/* Setting the image: */
div {
	background: url("img.jpg");
}
/* If you want to call an image from a specific directory use a '/'.
	For example, the image is in a folder called 'Images' (the HTML
	and CSS files have to be in the same folder as the 'Images folder') */
div {
	background: url("Images/img.jpg");
}
Posted by: Guest on December-07-2020

Browse Popular Code Answers by Language