继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

css 设置 子 div 和 父 div 一样大

慕虎7371278
关注TA
已关注
手记 1293
粉丝 202
获赞 874

banner div 和 video 一样大小,现在想给 video 加一个半透明蒙版,
slogan div 设置地和父 div banner 一样大即可。

html

<div id="banner">    <video autoplay="autoplay" loop="loop" muted="muted">
        <source src="../static/video/train.mp4">
    </video>
    <div class="slogan">
        <h1>空天车地信息一体化轨道交通</h1>
        <p>Power Train with AI.</p>
        <a href="#demo" class="btn btn-lg btn-success">Try the demo</a>
    </div></div>

css

#banner {    position: relative;    width: 100%;
}#banner video {    width: 100%;
}.slogan {    position: absolute;    background: rgba(0, 0, 0, .4);    width: 100%;    top: 0;    bottom: 0;  /*very important*/}

效果图

webp



作者:谢小帅
链接:https://www.jianshu.com/p/3714ca29e647


打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP