<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.container,
h1 {
background: red;
background-size: 100% 100%;
}
.container h1,
.container::after {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.container {
position: relative;
width: 100%;
height: 100vh;
}
.container::after {
content: '';
background: rgba(0, 0, 0, 0.8);
}
h1 {
z-index: 2;
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
}
</style>
</head>
<body>
<div class="container">
<h1>你好呀</h1>
</div>
<script>
</script>
</body>
</html>
css遮罩层字体穿透
最新推荐文章于 2024-01-25 15:15:25 发布