Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> CSS

ความโปร่งใสของ CSS โดยใช้ RGBA


ใช้ค่า RGBA() เพื่อความโปร่งใสของ CSS ตั้งค่าพารามิเตอร์ช่องอัลฟาเพื่อระบุความทึบของสี

ต่อไปนี้เป็นรหัสสำหรับการนำความโปร่งใสของ CSS ไปใช้โดยใช้ RGBA -

ตัวอย่าง

<!DOCTYPE html>
<html>
<head>
<style>
body {
   font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
div {
   width: 200px;
   height: 200px;
   background-color: rgb(0, 0, 255);
   color: white;
   display: inline-block;
}
.transparent {
   background-color: rgba(0, 0, 255, 0.582);
}
</style>
</head>
<body>
<h1>Transparency using RGBA example</h1>
<div class="transparent">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Hic, accusantium.
</div>
<div>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Eum, nisi!
</div>
</body>
</html>

ผลลัพธ์

รหัสข้างต้นจะสร้างผลลัพธ์ต่อไปนี้ -

ความโปร่งใสของ CSS โดยใช้ RGBA