如何在CSS中使div背景颜色透明

问题描述 投票:0回答:8

我没有使用CSS3。所以我不能使用

opacity
filter
属性。如果不使用这些属性,如何使
background-color
div
透明?它应该是这个link中的文本框示例。这里的文本框背景颜色是透明的。我想做同样的事情,但不使用上述属性。

css background-color transparent
8个回答
423
投票

opacity
的问题在于它也会影响内容,而通常您不希望这种情况发生。

如果您只想让元素透明,那真的很简单:

background-color: transparent;

但是如果你想要它是彩色的,你可以使用:

background-color: rgba(255, 0, 0, 0.4);

或定义使用右侧

1px
保存的背景图像(
1px
alpha
)。
(为此,请使用
Gimp
Paint.Net
或任何其他允许您执行此操作的图像软件。
只需创建一个新图像,删除背景并在其中添加半透明颜色,然后将其保存为 png 即可。)

正如 René 所说,最好的办法是混合两者,如果浏览器不支持 alpha,则首先使用

rgba
,然后将
1px
1px
图像作为后备:

background: url('img/red_transparent_background.png');
background: rgba(255, 0, 0, 0.4);

另请参阅http://www.w3schools.com/cssref/css_colors_legal.asp

演示我的 JSFiddle


147
投票

不透明度为您提供半透明或透明。请参阅示例Fiddle 此处

-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";       /* IE 8 */
filter: alpha(opacity=50);  /* IE 5-7 */
-moz-opacity: 0.5;          /* Netscape */
-khtml-opacity: 0.5;        /* Safari 1.x */
opacity: 0.5;               /* Good browsers */

注意:这些不是 CSS3 属性

参见 http://css-tricks.com/snippets/css/cross-browser-opacity/


13
投票

透明背景颜色

的默认设置

http://www.w3schools.com/cssref/pr_background-color.asp


9
投票

来自 https://developer.mozilla.org/en-US/docs/Web/CSS/background-color

设置背景颜色:

/* Hexadecimal value with color and 100% transparency*/
background-color: #11ffee00;  /* Fully transparent */

/* Special keyword values */
background-color: transparent;

/* HSL value with color and 100% transparency*/
background-color: hsla(50, 33%, 25%, 1.00);  /* 100% transparent */

/* RGB value with color and 100% transparency*/
background-color: rgba(117, 190, 218, 1.0);  /* 100% transparent */

3
投票

使用类似的东西

<div style='background-color: rgba(0, 0, 0, 0.4);'>

这会将所述 div 的背景颜色设置为黑色,但同时也是 40% 透明。 这不会改变 div 透明度的文本或内容。


2
投票

现在讨论可能有点晚了,但不可避免地有人会像我一样偶然发现这篇文章。我找到了我正在寻找的答案,并认为我应该发布自己的看法。 以下 JSfiddle 包括如何对 .PNG 进行透明分层。 Jerska 提到的 div CSS 透明度属性就是解决方案: http://jsfiddle.net/jyef3fqr/

HTML:

   <button id="toggle-box">toggle</button>
   <div id="box" style="display:none;" ><img src="x"></div>
   <button id="toggle-box2">toggle</button>
   <div id="box2" style="display:none;"><img src="xx"></div>
   <button id="toggle-box3">toggle</button>
   <div id="box3" style="display:none;" ><img src="xxx"></div>

CSS:

#box {
background-color: #ffffff;
height:400px;
width: 1200px;
position: absolute;
top:30px;
z-index:1;
}
#box2 {
background-color: #ffffff;
height:400px;
width: 1200px;
position: absolute;
top:30px;
z-index:2;
background-color : transparent;
      }
      #box3 {
background-color: #ffffff;
height:400px;
width: 1200px;
position: absolute;
top:30px;
z-index:2;
background-color : transparent;
      }
 body {background-color:#c0c0c0; }

JS:

$('#toggle-box').click().toggle(function() {
$('#box').animate({ width: 'show' });
}, function() {
$('#box').animate({ width: 'hide' });
});

$('#toggle-box2').click().toggle(function() {
$('#box2').animate({ width: 'show' });
}, function() {
$('#box2').animate({ width: 'hide' });
});
$('#toggle-box3').click().toggle(function() {
$('#box3').animate({ width: 'show' });
 }, function() {
$('#box3').animate({ width: 'hide' });
});

我最初的灵感:http://jsfiddle.net/5g1zwLe3/ 我还使用paint.net来创建透明PNG,或者更确切地说是带有透明BG的PNG。


0
投票
    /*Fully Opaque*/
    .class-name {
      opacity:1.0;
    }

    /*Translucent*/
    .class-name {
      opacity:0.5;
    }

    /*Transparent*/
    .class-name {
      opacity:0;
    }

    /*or you can use a transparent rgba value like this*/
    .class-name{
      background-color: rgba(255, 242, 0, 0.7);
      }

    /*Note - Opacity value can be anything between 0 to 1;
    Eg(0.1,0.8)etc */

0
投票

获得 100% 透明度:

style =“背景颜色:rgba(0,0,0,0);”

© www.soinside.com 2019 - 2024. All rights reserved.