22 lines
380 B
HTML
22 lines
380 B
HTML
<meta charset="utf-8">
|
|
|
|
<style>
|
|
body { overflow: hidden }
|
|
p {
|
|
margin: 1em 0;
|
|
padding: 1.4em;
|
|
font: 900 1.2em sans-serif;
|
|
position:absolute;
|
|
color: rgba(0,0,0,0);
|
|
}
|
|
|
|
.text {
|
|
background: red;
|
|
-webkit-background-clip: text;
|
|
background-clip: text;
|
|
transform: translate(-50%, -60%);
|
|
transform-origin: center;
|
|
left: 400px;
|
|
}
|
|
</style>
|
|
<p class="text">█</p>
|