Bùi Tấn Lực
- 24
- 05/10/2025
Thuộc tính background-blend-mode trong CSS dùng để hòa trộn giữa các hình nền trên phần tử HTML bằng các chế độ màu khác nhau, chi tiết như nào hãy cùng chúng tôi phân tích:
Thuộc tính background-blend-mode trong CSS
Chức năng của Thuộc tính background-blend-mode trong CSS
Thuộc tính background-blend-mode trong CSS dùng để hòa trộn giữa các hình nền trên phần tử HTML bằng các chế độ màu khác nhau.
Code Thuộc tính background-blend-mode trong CSS
Thuộc tính background-blend-mode lighten trong CSS
Hòa trộn giữa các hình nền bằng cách làm sáng:
#divid {
width: 400px;
height: 400px;
background-repeat: no-repeat, repeat;
background-image: url("https://webmoi.vn/thumuc/bg-cay.png"), url("https://webmoi.vn/thumuc/bg-nho.jpg");
background-blend-mode: lighten;
}
Thuộc tính background-blend-mode multiply trong CSS
Hòa trộn giữa các hình nền với chế độ multiply:
#divid {
width: 400px;
height: 400px;
background-repeat: no-repeat, repeat;
background-image: url("https://webmoi.vn/thumuc/bg-cay.png"), url("https://webmoi.vn/thumuc/bg-nho.jpg");
background-blend-mode: multiply;
}
Thuộc tính background-blend-mode screen trong CSS
Hòa trộn giữa các hình nền với chế độ screen:
#divid {
width: 400px;
height: 400px;
background-repeat: no-repeat, repeat;
background-image: url("https://webmoi.vn/thumuc/bg-cay.png"), url("https://webmoi.vn/thumuc/bg-nho.jpg");
background-blend-mode: screen;
}
Thuộc tính background-blend-mode overlay trong CSS
Hòa trộn giữa các hình nền với chế độ overlay:
#divid {
width: 400px;
height: 400px;
background-repeat: no-repeat, repeat;
background-image: url("https://webmoi.vn/thumuc/bg-cay.png"), url("https://webmoi.vn/thumuc/bg-nho.jpg");
background-blend-mode: overlay;
}
Thuộc tính background-blend-mode darken trong CSS
Hòa trộn giữa các hình nền với chế độ darken:
#divid {
width: 400px;
height: 400px;
background-repeat: no-repeat, repeat;
background-image: url("https://webmoi.vn/thumuc/bg-cay.png"), url("https://webmoi.vn/thumuc/bg-nho.jpg");
background-blend-mode: darken;
}
Thuộc tính background-blend-mode color-dodge trong CSS
Hòa trộn giữa các hình nền với chế độ color-dodge:
#divid {
width: 400px;
height: 400px;
background-repeat: no-repeat, repeat;
background-image: url("https://webmoi.vn/thumuc/bg-cay.png"), url("https://webmoi.vn/thumuc/bg-nho.jpg");
background-blend-mode: color-dodge;
}
Thuộc tính background-blend-mode saturation trong CSS
Hòa trộn giữa các hình nền với chế độ saturation:
#divid {
width: 400px;
height: 400px;
background-repeat: no-repeat, repeat;
background-image: url("https://webmoi.vn/thumuc/bg-cay.png"), url("https://webmoi.vn/thumuc/bg-nho.jpg");
background-blend-mode: saturation;
}
Thuộc tính background-blend-mode color trong CSS
Hòa trộn giữa các hình nền với chế độ color:
#divid {
width: 400px;
height: 400px;
background-repeat: no-repeat, repeat;
background-image: url("https://webmoi.vn/thumuc/bg-cay.png"), url("https://webmoi.vn/thumuc/bg-nho.jpg");
background-blend-mode: color;
}
Thuộc tính background-blend-mode luminosity trong CSS
Hòa trộn giữa các hình nền với chế độ luminosity:
#divid {
width: 400px;
height: 400px;
background-repeat: no-repeat, repeat;
background-image: url("https://webmoi.vn/thumuc/bg-cay.png"), url("https://webmoi.vn/thumuc/bg-nho.jpg");
background-blend-mode: luminosity;
}
Thuộc tính background-blend-mode normal trong CSS
Hòa trộn giữa các hình nền với chế độ normal:
#divid {
width: 400px;
height: 400px;
background-repeat: no-repeat, repeat;
background-image: url("https://webmoi.vn/thumuc/bg-cay.png"), url("https://webmoi.vn/thumuc/bg-nho.jpg");
background-blend-mode: normal;
}
Lời kết
Cảm ơn các bạn đã tham khảo bài viết Thuộc tính background-blend-mode trong CSS.
- 0 Bình luận

Email, Điện thoại của bạn sẽ không được hiển thị công khai. Các trường bắt buộc được đánh dấu *