Answers for "css rgba with hex"

CSS
1

how to use rgba in css

<style>
	body {
      background-color:rgba(255,255,255,1)
}
</style>
/*The first number is the red value (from 0 to 255), the second is the green value(from 0 to 255), the
third is the blue value(from 0 to 255), and the last is the opacity (from 0 to 1)
Posted by: Guest on November-10-2021

Browse Popular Code Answers by Language