css – 仅仅是jumbotron的不透明度

前端之家收集整理的这篇文章主要介绍了css – 仅仅是jumbotron的不透明度前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想将jumbotron设置为0.5不透明度.
<div class="jumbotron">
         <table id="white" class="table table-condensed" id="table">
           <tbody>
           <tr>
             <td>En</td>
             <th>1</th>
           </tr>
           <tr>
            <td>To</td>
            <th>2</th>
           </tr>
           </tbody>
         </table>
    </div>

有没有办法只在jumbotron而不是桌子上这样做?

解决方法

使用RGBa
.jumbotron {
   background: rgb(200,54,54); /* This is for ie8 and below */
   background: rgba(200,0.5); 
}

第二行(0.5)的最后一个值是不透明度.

为清楚起见,这不适用于ie8或更低版本,因为不支持rgba.

原文链接:https://www.f2er.com/css/215492.html

猜你在找的CSS相关文章