position: sticky to bottom left

前端 未结 6 1036
名媛妹妹
名媛妹妹 2021-01-04 00:57

I have just been playing around in FF32 & Safari 7, with position: sticky. And it works perfecly with top: 0px or left: 0px (to st

6条回答
  •  误落风尘
    2021-01-04 01:46

    with the following html:

    I'm in the bottom left!

    and the following css:

    #bottom-left {
        width: 250px;
        height: 250px;
        color: #fff;
        background-color: #000;
        position: fixed;
        bottom: 0;
       left: 0;
    }
    

    you should have a sticky div in the bottom left corner of the page

    Example: http://jsfiddle.net/wjxws9hy/

提交回复
热议问题