1. Home
  2. /
  3. Blog
  4. /
  5. background and colors in css
CSS

background and colors in css

September 27, 2022 1 min read 2,318
background and colors in css
body{  /* background color    */ background: gray;   /*  background image   */ background-image: url(imageurl);   /*  set color by it's name  */ color: red;   /* set color by rgb color   */ color: rgb(168, 50, 157);   /* set color by hex    */ color: #92a8d1; }	
Share:
Read next

Related articles