Horje
add alpha value to css color variable Code Example
add alpha value to css color variable
:root {
  /* #f0f0f0 in decimal RGB */
  --color: 240, 240, 240;
}

body {
  color: #000;
  background-color: #000;
}

#element {
  background-color: rgba(var(--color), 0.8);
}




Css

Related
align div to center of screen Code Example align div to center of screen Code Example
white border css Code Example white border css Code Example
open applications bat start Code Example open applications bat start Code Example
how to get all values from object in javascript Code Example how to get all values from object in javascript Code Example
hiden file upload button css Code Example hiden file upload button css Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10