CSS rgb() ব্যবহার করুন RGB মডেল ব্যবহার করে রঙ সংজ্ঞায়িত করার ফাংশন।
CSS rgba() ব্যবহার করুন অস্বচ্ছতার সাথে RGB রঙ সেট করার ফাংশন।
আপনি rgba() ফাংশনের সাথে রঙ সেট করতে নিম্নলিখিত কোড চালানোর চেষ্টা করতে পারেন:
উদাহরণ
<!DOCTYPE html> <html> <head> <style> h1 { background-color:hsl(0,100%,50%); } h2 { background-color:rgb(0,0,255); color: rgb(255,255,255); } p { background-color:rgba(255,0,0,0.9); } </style> </head> <body> <h1>Red Background</h1> <h2>Blue Background</h2> <p>This is demo text!</p> </body> </html>