CSS创建一个透明的div

时间:2011-02-13 00:51:20

标签: jquery html css transparency transparent

有没有办法让div HTML元素半透明?

4 个答案:

答案 0 :(得分:10)

使用CSS,这是跨浏览器解决方案

div {
    opacity: 0.5;
    filter: alpha(opacity = 0.5);
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0.5);
}

答案 1 :(得分:8)

这适用于所有浏览器

div {
 -khtml-opacity:.50; 
 -moz-opacity:.50; 
 -ms-filter:”alpha(opacity=50)”;
  filter:alpha(opacity=50);
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0.5);
  opacity:.50; 
}

如果您不希望透明度影响整个容器及其子容器,请检查此解决方法http://www.impressivewebs.com/css-opacity-that-doesnt-affect-child-elements/

答案 2 :(得分:4)

使用半透明的背景PNG文件,并希望您不必支持IE6?

答案 3 :(得分:0)

如果您只希望div的背景半透明,而不是其中的任何文本和元素,您可以简单地将背景颜色设置为透明颜色(即使用alpha< 1)。

一个例子是our website,这是一个最小化的例子:

<html>
<head>
  <title>Transparency test</title>
  <style type="text/css">
    body {
      background-image: url(http://www.fencing-game.de/style/background6.png);
    }
    #trans {
      background-color: rgba(255,0,0,0.5);
      max-width: 80ex;
    }
    p {
    max-width: 70ex;
    margin: auto;
    }
    #nontrans {
      background-color: rgb(255,255, 0);
    }
  </style>
</head>
<body>
  <div id="trans">
    <p>normal text</p>
    <p id="nontrans">nontransparent</p>
    <p>normal text</p>
  </div>
</body>