Search
 
SCRIPT & CODE EXAMPLE
 

CSS

css background color

body {
  background-color: green;
}
Comment

css change background color of page

/* Use the following code: */
html {background-color: #fefefe;} 
/* You can change the hexedecimal code to RGB, RGBA, name & more colors!*/
Comment

background color css

html,body {
  background-color: red;
}
Comment

css set background color

body {
	background-color: red; 
}
Comment

CSS Background Color

/* Keyword values */
background-color: gainsboro;
background-color: lightcoral;

/* Hexadecimal value */
background-color: #0000ff;    /* blue opaque */
background-color: #00f;       /* blue opaque shorthand */
background-color: #0000ff00;  /* blue transparent */
background-color: #00f0;      /* blue transparent shorthand  */
background-color: #0000ffff;  /* blue opaque */
background-color: #00ff;      /* Fully opaque shorthand  */

/* RGB value */
background-color: rgb(0, 0, 255);        /* blue opaque */
background-color: rgba(0, 0, 255, 0.5);  /* 50% transparent */

/* HSL value */
background-color: hsl(67, 100%, 50%);         /* yellow opaque */
background-color: hsla(67, 100%, 50%, 0.75);  /* 75% transparent */

/* Special keyword values */
background-color: currentcolor;
background-color: transparent;

/* Global values */
background-color: inherit;
background-color: initial;
background-color: unset;
Comment

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;
}
Comment

css background color

html {background-color: #ededed;} /*Changes the background colour to a light grey*/
Comment

css background color

body {background-color: coral;}
Comment

css background color

.class,#id,div {
  background-color: green;
}
Comment

background color css

body {
  background-color: black;
}
Comment

html or CSS background-color

Add background-color in html
Comment

PREVIOUS NEXT
Code Example
Css :: can you control another div on hover css 
Css :: css buttons 
Css :: css offset border 
Css :: login page ui html css 
Css :: grid-template-areas 
Css :: css grid first child 
Css :: simple website templates free download html with css without bootstrap 
Css :: put a background image in css with absolute layout 
Css :: display css 
Css :: css change image height 
Css :: background image causes webpage scrolling slow 
Css :: alacritty auto start fish 
Css :: javascript index value 
Css :: step 20 freecodecamp flexbox 
Css :: rendre une div scrollable 
Css :: text-align transform 
Css :: import import bootstrap-social as css file; 
Css :: css color word multiple colors 
Css :: css direct child selector 
Css :: profile page html css template 
Css :: css is selector 
Css :: transform in css 
Css :: Extracting data in scrapy 
Css :: rotating text animation 
Css :: what is a css selector 
Css :: footer 
Css :: animation 
Css :: table td css 
Css :: list view render queryset 
Css :: inline-block column appear higher than others 
ADD CONTENT
Topic
Content
Source link
Name
9+3 =