Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<style>
.test {
    font-size: 100px;
    text-shadow: 300px 300px 0 green;
}
.hide-text {
    background-color: white;
    position: absolute;
    width: 300px;
    height: 200px;
    z-index: 1;
    left: 0;
}
</style>
</head>
<body>
    <span class="test">A👍B</span>
    <span class="hide-text"></span>
</body>