css 设置元素背景为透明

时间:2024-05-05 09:05:26

要设置某一元素的背景为透明,在 chrome 、firefox、opera 下是这样的:

rgba 中的最后一个参数 0.4 就是想要的透明度,范围在0~1之间。

在 ie 中一般是这样的:

filter: alpha(opacity=40);

opacity 表示透明度,它的值范围在 0~100 之间

那么如何兼容各浏览器呢?只要把它们写在一起就行了。

由于 ie 不支持 rgba,所以会忽略之。其他浏览器对于自己不支持的,一般也会忽略。

下面来个示例:

HTML 代码:

  1. aaaaa
  2. </div>
  3. </body>
  4. <div class="transparent">
  5. <div class="box">
  6. box
  7. </div>
  8. </div>

CSS 代码:

    1. .non-transparent:hover {
    2. background-color: yellow;
    3. }
    4. .transparent {
    5. position: absolute;
    6. top: 0;
    7. left: 0;
    8. text-align: center;
    9. width: 100%;
    10. height: 100%;
    11. filter: alpha(opacity=40);
    12. background-color: rgb(0, 0, 0);
    13. background-color: rgba(0, 0, 0, 0.4);
    14. }
    15. .box {
    16. background-color: yellow;
    17. width: 50%;
    18. height: 50%;
    19. position: relative;
    20. left: 5%;
    21. top: 10%;
    22. }