I'm looking to create a Zune/Microsoft-style oversized title in CSS so that a div has a semi-transparent text behind it.
Any ideas? I'm hoping to keep it as unreliant on plugins and images as possible — but it's important that the text can overflow (invisibly), and that it can be changed (probably by JS). It must be able to overflow slightly without appearing outside the div; that is, notice the bottom of the "text" letters; this is the equivalent of setting bottom: -5px;
in CSS.
This is what I'm 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 an about
div that is also overflow: hidden;
but... Alas. It does not hide.
Thanks!