【问题标题】:How to change the opacity of a background colour - BG-INFO Opacity如何更改背景颜色的不透明度 - BG-INFO Opacity
【发布时间】:2020-07-10 15:30:05
【问题描述】:

我已经查看了论坛和其他论坛

我的代码中有这个。但是,我需要将不透明度更改为 50%。我无法为我的生活弄清楚该怎么做。请问你能帮忙吗?

<a class="p-2 mb-2 bg-info text-white>

非常感谢

卢克

【问题讨论】:

    标签: background-color opacity


    【解决方案1】:

    不透明度取值从 0 到 1。不是百分比。

    你可以为你的对象添加一个类:

    <a class="p-2 mb-2 bg-info text-white half-opacity" >
    

    然后你可以定义CSS类为:

    half-opacity {
        opacity: 0.5;
    }
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2019-08-14
      • 2013-02-05
      • 2013-05-28
      • 2014-07-15
      • 1970-01-01
      • 2015-02-10
      • 1970-01-01
      • 2017-08-11
      相关资源
      最近更新 更多