文字や背景透明
60%の半透明にする
a:hover{
opacity:0.6;
filter:alpha(opacity=60);
-ms-filter: "alpha( opacity=60 )";
}
背景色だけ半透明
背景色が白で80%の半透明
.mainbox {
background: rgba(255, 255, 255, 0.8);
}
背景色が黒で80%の半透明
.mainbox {
background: rgba(0, 0, 0, 0.8);
}
