h1 {
position: relative;
font-size: 70pt;
margin-top: 0;
}</p>
<pre><code>h1 a {
text-decoration: none;
color: #ffcc33; /* or rgb/a */
position: absolute;
-webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,1)), color-stop(50%, rgba(0,0,0,.5)), to(rgba(0,0,0,1)));
}
//css to enter the content on page after render - optional
h1:after {
content : 'Hello World';
color: #d6d6d6;
text-shadow: 0 1px 0 white;
}