배경 혼합 모드 사용 속성을 사용하여 CSS로 각 배경 레이어의 혼합 모드를 설정합니다. background-blend-mode 속성을 구현하고 모드를 어둡게 설정하기 위해 다음 코드를 실행할 수 있습니다.
예시
<!DOCTYPE html>
<html>
<head>
<style>
#myDIV {
width: 250px;
height: 170px;
background-repeat: no-repeat, repeat;
background-image:url("https://www.tutorialspoint.com/assets/videotutorials/courses/3d_animation_online_training/380_course_211_image.jpg"),url( https://www.tutorialspoint.com/latest/dc.js.png);
background-blend-mode: darken;
}
</style>
</head>
<body>
<h1>Set Blend Mode</h1>
<div id = "myDIV"></div>
</body>
</html>