sudhakarinfotech
(current)
Run Code
Live Code Editor- RGBA Color
Source Code
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>CSS3 Color:RGBA</title> <style type="text/css"> .custom--size { width: 100%; height: 50vh; margin-bottom: 1.5rem; } .red-color { background-color: rgba(255, 0, 0, 0.2); /* red with opacity */ } .geen-color { background-color: rgba(0, 255, 0, 0.4); /* green with opacity */ } .blue-color { background-color: rgba(0, 0, 255, 0.6); /* blue with opacity */ } </style> </head> <body> <h1>RGBA Color Value</h1> <div class="red-color custom--size"></div> <div class="geen-color custom--size"></div> <div class="blue-color custom--size"></div> </body> </html>
Source Code Output :
Running