CSS样式覆盖

先见代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<style type="text/css">
<!--
.vista {
background-color: #66CCFF;
filter: Alpha(Opacity=20);
}
.vista2 {
background-color: #66CCFF;
}
-->
</style>
</head>

<body>
<table width="200" height="200" border="0" cellpadding="0" cellspacing="0" class="vista">
<tr>
<td align="center" valign="middle"><table width="180" height="90" border="0" cellpadding="0" cellspacing="0" class="vista2">
<tr>
<td> </td>
</tr>
</table></td>
</tr>
</table>
</body>
</html>

我想让外面的表格透明度为20%,但外面表格里面的透明度却不改变,我该怎么做?
谢谢`

第1个回答  2007-01-11
相似回答
大家正在搜