<!DOCTYPE html>
<meta charset="utf-8">
<style>
#clip-text {
width: 100px;
height: 100px;
background-color: red;
-webkit-background-clip: text;
font-size: xx-large;
color: green;
}
#no-clip-text {
width: 100px;
height: 100px;
background-color: green;
}
</style>
<div id="clip-text">PASS</div>
<div id="no-clip-text"></div>