情诗网 >套路情话 > 正文

div套路之div悬浮

来源:情诗网    2020-11-12    分类:套路情话

没有什么问题是用一个div解决不了的,如果有,那就用两个。

项目终于提测了,耗时3周,经历了从前端小白到前端小菜的过程。在开发过程中,踩到了很多坑,但是通过万能的baidu和google,这些坑都被填平了,尽管填坑的材料可能不是最优。现在纪录一下踩到的坑和填坑的过程。

Requirement:
实现一个在图片底部用阴影展示title的样式。如果把图片和标题各看作一个div,那要实现的就是让一个div悬浮(或重叠)在另一个div上面。

Implementation:
1、按顺序输入的div是从上到下排列的。

html:
    <div class = "under"></div>
    <div class = "over">
        <p>title</p>
    </div>
css:
    .under {width: 100px; height: 50px; background: #bebebe;}
    .over {width: 100px; height: 30px; background: black; color: white;}

效果:

Paste_Image.png

2、为了让over悬浮在under上,要使用到position属性。

html不变。
css:
    .under {width: 100px; height: 50px; background: #bebebe; position: absolute;}
    .over {width: 100px; height: 30px; background: black; color: white; position: relative;}

效果:

Paste_Image.png

3、没有什么问题是一个div解决不了的。

html:
    <div class="parent">    
        <div class="first"></div>
        <div class="second">
            <p>title</p>
        </div>
    </div>
css:
    .parent {position: relative;}
    .under {width: 100px; height: 50px; background: #bebebe;}
    .over {width: 100px; height: 30px; background: black; color: white; position: absolute; bottom: 0;}

效果:

Paste_Image.png

好了。今天就纪录到这里,如果找到更好的方法会继续补充。加油!新的一周已经开始!

热门文章