I am looking to create a Zune / Microsoft superscript header in CSS so that it has translucent text above it.

Any ideas? I hope to keep it as immune to plugins and images as possible, but it is important that the text can overflow (invisibly) and that it can be modified (possibly JS). It should be able to overflow a bit without going beyond the div; that is, pay attention to the bottom of the "text" letters; this is equivalent to setting bottom: -5px;in CSS.
This is what I am considering:
#about_big {
font-family: "Proxima Light", sans-serif;
font-size: 2000%;
color: rgba(100, 100, 100, .5);
overflow: hidden;
padding: 0;
margin: 0;
position: absolute;
}
... inside the div about, too overflow: hidden;, but ... Alas. He does not hide.
Thank!
source
share