Answers for "css rgb color with opacity"

5

background color css rgb

body {
  background-color: rgb(255,255,255);
}
Posted by: Guest on April-07-2020
16

opacity color

.opacity30 {
  opacity: 0.3;
  filter: alpha(opacity=30); /* For IE8 and earlier */
}
Posted by: Guest on June-25-2019
12

rgba red color

rgb(255,0,0)  /*red*/  Hex  #FF0000
Posted by: Guest on July-07-2020
14

rgba green color

rgb(0,128,0)  /*green*/  Hex #008000
Posted by: Guest on July-07-2020
4

background color with opacity

h1 {background-color:rgba(255,0,0,0.3);}
Posted by: Guest on April-01-2020

Browse Popular Code Answers by Language