Programming in CSS Way
Transparent:
opacity:0.4; filter:alpha(opacity=40);
Make it center:
.parent { position:relative; } .notice { position:absolute; width:200px; height:100px; left:50%; top:50%; margin-top:-50px; margin-left:-100px; }
Transparent:
opacity:0.4; filter:alpha(opacity=40);
Make it center:
.parent { position:relative; } .notice { position:absolute; width:200px; height:100px; left:50%; top:50%; margin-top:-50px; margin-left:-100px; }