Devone

What's The Simplest Way to Display Analyglyphic Text?

Asked by Devone 2 years ago text typography type analyglyphic


Rollback999
0
 
Analyglyphic text is great! It provides an awesome shadown underneath your text solely using CSS!

<style>

h1{
    display: Inline;
    position: Relative;
    font: 200px Helvetica, Sans-Serif;
    letter-spacing: -5px;
    color: Rgba(0,0,255,0.5);
}

h1:after{
    content: "Hello";
    position: Absolute; left: 10px; top: 5px;
    color: Rgba(255,0,0,0.5);
}
</style>

by Rollback999 2 years ago

Answer this question

What's The Simplest Way to Display Analyglyphic Text?

0 errors found:

 
0