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

CSS ความทึบ / ความโปร่งใส


สำหรับ CSS Opacity/ Transparency จะใช้คุณสมบัติความทึบ ตัวอย่างเช่น

opacity: 0.3;

ต่อไปนี้เป็นรหัสแสดงความทึบ/โปร่งใสโดยใช้ CSS -

ตัวอย่าง

<!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);
}
img{
   width: 200px;
   height: 200px;
}
.transparent-img{
   opacity: 0.3;
}
</style>
</head>
<body>
<h1>Tansparency/Opacity 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>
<hr>
<img src="https://i.picsum.photos/id/487/300/300.jpg">
<img class="transparent-img" src="https://i.picsum.photos/id/487/300/300.jpg">
</body>
</html>

ผลลัพธ์

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

CSS ความทึบ / ความโปร่งใส