「CSS3入門」要素の透過度(opacity)を指定する
書式
opacity: value|inherit;
IE向けの指定
filter:alpha(opacity=50)
Firefox向けの指定
filter:Alpha(opacity=50)
サンプルコード
<style>
div
{
background-color:blue;
opacity:0.5;
filter:Alpha(opacity=50);
}
</style>
<div>this is a test data</div>