<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
.container { | |
font-family: ahem; | |
font-size: 100px; | |
overflow: hidden; | |
height: 1em; | |
} | |
span { | |
color: transparent; | |
background-color: green; | |
clip-path: inset(0 0 20px 0); | |
} | |
</style> | |
</head> | |
<body> | |
<div class="container"> | |
<span>AAAA</span> | |
</div> | |
</body> | |
</html> |